File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 - name : Set up Go
2424 uses : actions/setup-go@v5
2525 with :
26- go-version : ${{ inputs.go-version || '^1.22 ' }}
26+ go-version : ${{ inputs.go-version || '^1.23 ' }}
2727 check-latest : true
2828
2929 - run : |
Original file line number Diff line number Diff line change 1717 matrix :
1818 include :
1919 # test build of oldest supported go version
20- - name : go1.22
21- go-version : " ~1.22 "
20+ - name : go1.23
21+ go-version : " ~1.23 "
2222 uses : ./.github/workflows/build-with-cfg.yml
2323 with :
2424 go-version : ${{ matrix.go-version }}
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
1616 - name : Checkout
1717 uses : actions/checkout@v4
1818
19- - name : Set up Go 1.22 +
19+ - name : Set up Go 1.23 +
2020 uses : actions/setup-go@v5
2121 with :
22- go-version : " ^1.22 " # The Go version to download (if necessary) and use.
22+ go-version : " ^1.23 " # The Go version to download (if necessary) and use.
2323 check-latest : true
2424 cache : false
2525
Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ jobs:
3737 - name : Shallow checkout
3838 uses : actions/checkout@v4
3939
40- - name : Set up Go 1.22 +
40+ - name : Set up Go 1.23 +
4141 uses : actions/setup-go@v5
4242 with :
43- go-version : " ^1.22 "
43+ go-version : " ^1.23 "
4444 check-latest : true
4545
4646 - run : go version
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ The **client** enables interaction with devices in a local network:
1616
1717## Requirements
1818
19- - Go 1.22 or higher
19+ - Go 1.23 or higher
2020
2121## Installation OCF Client
2222
Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1
2- FROM golang:1.22.7 -alpine AS build
2+ FROM golang:1.23.9 -alpine AS build
33RUN apk add --no-cache build-base curl git
44WORKDIR $GOPATH/src/github.com/plgd-dev/device
55COPY go.mod go.sum ./
Original file line number Diff line number Diff line change 11module github.com/plgd-dev/device/v2
22
3- go 1.22
4-
5- toolchain go1.22.0
3+ go 1.23
64
75require (
86 github.com/fredbi/uri v1.1.0
Original file line number Diff line number Diff line change 1- FROM golang:1.22.7 -alpine AS build
1+ FROM golang:1.23.9 -alpine AS build
22RUN apk add --no-cache build-base curl git
33WORKDIR $GOPATH/src/github.com/plgd-dev/device
44COPY go.mod go.sum ./
You can’t perform that action at this time.
0 commit comments