File tree Expand file tree Collapse file tree 7 files changed +16
-16
lines changed
Expand file tree Collapse file tree 7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 77
88 docs :
99 docker :
10- - image : cimg/go:1.23
10+ - image : cimg/go:1.25
1111 steps :
1212 - checkout
1313 - run : |
@@ -19,14 +19,14 @@ jobs:
1919 make pipeline-nointegration
2020 test :
2121 docker :
22- - image : cimg/go:1.23
22+ - image : cimg/go:1.25
2323 steps :
2424 - checkout
2525 - run : make build-deps ci-test # ci-upload-coverage
2626
2727 scan :
2828 docker :
29- - image : cimg/go:1.23
29+ - image : cimg/go:1.25
3030 steps :
3131 - checkout
3232 - setup_remote_docker
4040 machine : true
4141 environment :
4242 GOPATH : /home/circleci/go
43- GO_SHA256SUM : d3847fef834e9db11bf64e3fb34db9c04db14e068eeb064f49af747010454f90
43+ GO_SHA256SUM : 9e9b755d63b36acf30c12a9a3fc379243714c1c6d3dd72861da637f336ebb35b
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.23.12 .linux-amd64.tar.gz
52+ export GO_DOWNLOAD_URL=https://go.dev/dl/go1.25.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.23 -c "sleep infinity"
63+ - run : docker run -d --entrypoint sh --label com.replicated.support-bundle=true cimg/go:1.25 -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.23
76+ - image : cimg/go:1.25
7777 steps :
7878 - checkout
7979 - setup_remote_docker
8585
8686 deploy_unstable :
8787 docker :
88- - image : cimg/go:1.23
88+ - image : cimg/go:1.25
8989 steps :
9090 - checkout
9191 - setup_remote_docker
Original file line number Diff line number Diff line change 1- FROM golang:1.23
1+ FROM golang:1.25
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 @@ -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.23 \
152+ golang:1.25 \
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.23 \
167+ golang:1.25 \
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.23 \
181+ golang:1.25 \
182182 /bin/sh -c " \
183183 ./e2e/collect/e2e.sh \
184184 "
Original file line number Diff line number Diff line change 1- FROM debian:bookworm -slim
1+ FROM debian:trixie -slim
22ENV DEBIAN_FRONTEND=noninteractive
33RUN apt-get update -y && apt-get upgrade -y && apt-get install --no-install-recommends -y \
44 ca-certificates \
Original file line number Diff line number Diff line change 11module github.com/replicatedcom/support-bundle
22
3- go 1.23
3+ go 1.25
44
55require (
66 github.com/Masterminds/semver v1.4.2 // indirect
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ func DockerServerVersionCompare(a, b string) int {
1616 }
1717 bV , err := docker .ParseServerVersion (b )
1818 if err != nil {
19- Panic ("dockerServerVersionCompare" , errors .Wrapf (err , b ))
19+ Panic ("dockerServerVersionCompare" , errors .Wrap (err , b ))
2020 }
2121 return aV .Compare (bV )
2222}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ func SemverCompare(a, b string) int {
1616 }
1717 bV , err := semver .Parse (b )
1818 if err != nil {
19- Panic ("semverCompare" , errors .Wrapf (err , b ))
19+ Panic ("semverCompare" , errors .Wrap (err , b ))
2020 }
2121 return aV .Compare (bV )
2222}
You can’t perform that action at this time.
0 commit comments