File tree 4 files changed +15
-15
lines changed
4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 7
7
8
8
docs :
9
9
docker :
10
- - image : cimg/go:1.20
10
+ - image : cimg/go:1.22
11
11
steps :
12
12
- checkout
13
13
- run : |
@@ -19,14 +19,14 @@ jobs:
19
19
make pipeline-nointegration
20
20
test :
21
21
docker :
22
- - image : cimg/go:1.20
22
+ - image : cimg/go:1.22
23
23
steps :
24
24
- checkout
25
25
- run : make build-deps ci-test # ci-upload-coverage
26
26
27
27
scan :
28
28
docker :
29
- - image : cimg/go:1.20
29
+ - image : cimg/go:1.22
30
30
steps :
31
31
- checkout
32
32
- setup_remote_docker
40
40
machine : true
41
41
environment :
42
42
GOPATH : /home/circleci/go
43
- GO_SHA256SUM : 9c5d48c54dd8b0a3b2ef91b0f92a1190aa01f11d26e98033efa64c46a30bba7b
43
+ GO_SHA256SUM : 904b924d435eaea086515bc63235b192ea441bd8c9b198c507e85009e6e4c7f0
44
44
GO : /usr/local/go/bin/go
45
45
GOCACHE : " /tmp/go/cache"
46
46
steps :
49
49
keys :
50
50
- support-bundle-e2e-build-cache-base
51
51
- 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
53
53
export GOPATH=/home/circleci/go
54
54
export GOROOT=/usr/local/go
55
55
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
60
60
tar -zxvf golang.tar.gz -C /tmp
61
61
sudo rm -rf ${GOROOT}
62
62
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"
64
64
- run : |
65
65
export GOPATH=/home/circleci/go
66
66
export GOROOT=/usr/local/go
73
73
74
74
deploy :
75
75
docker :
76
- - image : cimg/go:1.20
76
+ - image : cimg/go:1.22
77
77
steps :
78
78
- checkout
79
79
- setup_remote_docker
85
85
86
86
deploy_unstable :
87
87
docker :
88
- - image : cimg/go:1.20
88
+ - image : cimg/go:1.22
89
89
steps :
90
90
- checkout
91
91
- setup_remote_docker
Original file line number Diff line number Diff line change 1
- FROM golang:1.20
1
+ FROM golang:1.22
2
2
3
3
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install --no-install-recommends -y \
4
4
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
114
114
115
115
build-deps :
116
116
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
118
118
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
120
120
go install github.com/golang/mock/mockgen@latest
121
121
122
122
.state/coverage.out : $(SRC )
@@ -149,7 +149,7 @@ e2e-supportbundle-core:
149
149
-v /var/run/docker.sock:/var/run/docker.sock \
150
150
-w /go/src/$(PKG ) \
151
151
-l com.replicated.support-bundle=true \
152
- golang:1.20 \
152
+ golang:1.22 \
153
153
/bin/sh -c " \
154
154
./e2e/collect/e2e.sh \
155
155
"
@@ -164,7 +164,7 @@ e2e-supportbundle-docker:
164
164
-w /go/src/$(PKG ) \
165
165
-l com.replicated.support-bundle=true \
166
166
-e DOCKER=1 \
167
- golang:1.20 \
167
+ golang:1.22 \
168
168
/bin/sh -c " \
169
169
./e2e/collect/e2e.sh \
170
170
"
@@ -178,7 +178,7 @@ e2e-supportbundle-swarm:
178
178
-w /go/src/$(PKG ) \
179
179
-l com.replicated.support-bundle=true \
180
180
-e SWARM=1 \
181
- golang:1.20 \
181
+ golang:1.22 \
182
182
/bin/sh -c " \
183
183
./e2e/collect/e2e.sh \
184
184
"
Original file line number Diff line number Diff line change 1
1
module github.com/replicatedcom/support-bundle
2
2
3
- go 1.20
3
+ go 1.22
4
4
5
5
require (
6
6
github.com/Masterminds/semver v1.4.2 // indirect
You can’t perform that action at this time.
0 commit comments