File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed
Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 77
88 docs :
99 docker :
10- - image : cimg/go:1.20
10+ - image : cimg/go:1.22
1111 steps :
1212 - checkout
1313 - run : |
@@ -19,14 +19,14 @@ jobs:
1919 make pipeline-nointegration
2020 test :
2121 docker :
22- - image : cimg/go:1.20
22+ - image : cimg/go:1.22
2323 steps :
2424 - checkout
2525 - run : make build-deps ci-test # ci-upload-coverage
2626
2727 scan :
2828 docker :
29- - image : cimg/go:1.20
29+ - image : cimg/go:1.22
3030 steps :
3131 - checkout
3232 - setup_remote_docker
4040 machine : true
4141 environment :
4242 GOPATH : /home/circleci/go
43- GO_SHA256SUM : 9c5d48c54dd8b0a3b2ef91b0f92a1190aa01f11d26e98033efa64c46a30bba7b
43+ GO_SHA256SUM : 904b924d435eaea086515bc63235b192ea441bd8c9b198c507e85009e6e4c7f0
4444 GO : /usr/local/go/bin/go
4545 GOCACHE : " /tmp/go/cache"
4646 steps :
4949 keys :
5050 - support-bundle-e2e-build-cache-base
5151 - run : |
52- export GO_DOWNLOAD_URL=https://go.dev/dl/go1.20.12 .linux-amd64.tar.gz
52+ export GO_DOWNLOAD_URL=https://go.dev/dl/go1.22.5 .linux-amd64.tar.gz
5353 export GOPATH=/home/circleci/go
5454 export GOROOT=/usr/local/go
5555 export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
6060 tar -zxvf golang.tar.gz -C /tmp
6161 sudo rm -rf ${GOROOT}
6262 sudo mv /tmp/go ${GOROOT}
63- - run : docker run -d --entrypoint sh --label com.replicated.support-bundle=true cimg/go:1.20 -c "sleep infinity"
63+ - run : docker run -d --entrypoint sh --label com.replicated.support-bundle=true cimg/go:1.22 -c "sleep infinity"
6464 - run : |
6565 export GOPATH=/home/circleci/go
6666 export GOROOT=/usr/local/go
7373
7474 deploy :
7575 docker :
76- - image : cimg/go:1.20
76+ - image : cimg/go:1.22
7777 steps :
7878 - checkout
7979 - setup_remote_docker
8585
8686 deploy_unstable :
8787 docker :
88- - image : cimg/go:1.20
88+ - image : cimg/go:1.22
8989 steps :
9090 - checkout
9191 - setup_remote_docker
Original file line number Diff line number Diff line change 1- FROM golang:1.20
1+ FROM golang:1.22
22
33RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install --no-install-recommends -y \
44 jq \
Original file line number Diff line number Diff line change @@ -114,9 +114,9 @@ bin/support-bundle: $(SRC) pkg/collect/bundle/defaultspec/asset.go
114114
115115build-deps :
116116 go install golang.org/x/lint/golint@latest
117- go install golang.org/x/tools/cmd/goimports@latest
117+ go install golang.org/x/tools/cmd/goimports@v0.25.0
118118 go install github.com/a-urth/go-bindata/go-bindata@latest
119- go install github.com/onsi/ginkgo/ginkgo@latest
119+ go install github.com/onsi/ginkgo/ginkgo@v1.16.5
120120 go install github.com/golang/mock/mockgen@latest
121121
122122.state/coverage.out : $(SRC )
@@ -149,7 +149,7 @@ e2e-supportbundle-core:
149149 -v /var/run/docker.sock:/var/run/docker.sock \
150150 -w /go/src/$(PKG ) \
151151 -l com.replicated.support-bundle=true \
152- golang:1.20 \
152+ golang:1.22 \
153153 /bin/sh -c " \
154154 ./e2e/collect/e2e.sh \
155155 "
@@ -164,7 +164,7 @@ e2e-supportbundle-docker:
164164 -w /go/src/$(PKG ) \
165165 -l com.replicated.support-bundle=true \
166166 -e DOCKER=1 \
167- golang:1.20 \
167+ golang:1.22 \
168168 /bin/sh -c " \
169169 ./e2e/collect/e2e.sh \
170170 "
@@ -178,7 +178,7 @@ e2e-supportbundle-swarm:
178178 -w /go/src/$(PKG ) \
179179 -l com.replicated.support-bundle=true \
180180 -e SWARM=1 \
181- golang:1.20 \
181+ golang:1.22 \
182182 /bin/sh -c " \
183183 ./e2e/collect/e2e.sh \
184184 "
Original file line number Diff line number Diff line change 11module github.com/replicatedcom/support-bundle
22
3- go 1.20
3+ go 1.22
44
55require (
66 github.com/Masterminds/semver v1.4.2 // indirect
You can’t perform that action at this time.
0 commit comments