File tree Expand file tree Collapse file tree 4 files changed +7
-9
lines changed Expand file tree Collapse file tree 4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -2,25 +2,25 @@ version: 2
22jobs :
33 license :
44 docker :
5- - image : golang:1.22
5+ - image : golang:1.23
66 steps :
77 - checkout
88 - run : ./script/check-licenses.sh
99 vet :
1010 docker :
11- - image : golang:1.22
11+ - image : golang:1.23
1212 steps :
1313 - checkout
1414 - run : go vet ./...
1515 test :
1616 docker :
17- - image : golang:1.22
17+ - image : golang:1.23
1818 steps :
1919 - checkout
2020 - run : go test -race -cover ./...
2121 smoke-test :
2222 docker :
23- - image : golang:1.22
23+ - image : golang:1.23
2424 steps :
2525 - checkout
2626 - run : go run ./cmd/clusterlint --help
Original file line number Diff line number Diff line change 1717 - name : Install go
1818 uses : actions/setup-go@0caeaed6fd66a828038c2da3c0f662a42862658f
1919 with :
20- go-version : ^1.22
20+ go-version : ^1.23
2121 - name : Check out code into the Go module directory
2222 uses : actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
2323 - name : Login to dockerhub to push the image
Original file line number Diff line number Diff line change 11# Build the clusterlint binary
2- FROM golang:1.22 as builder
2+ FROM golang:1.23 as builder
33WORKDIR /workspace
44# Copy the Go Modules manifests
55COPY go.mod go.mod
Original file line number Diff line number Diff line change 11module github.com/digitalocean/clusterlint
22
3- go 1.22.0
4-
5- toolchain go1.22.2
3+ go 1.23.1
64
75require (
86github.com/docker/distribution v2.8.3+incompatible
You can’t perform that action at this time.
0 commit comments