File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112
112
113
113
build-geth :
114
114
docker :
115
- - image : cimg/go:1.20
115
+ - image : cimg/go:1.21
116
116
resource_class : xlarge
117
117
steps :
118
118
- checkout
@@ -121,22 +121,22 @@ jobs:
121
121
unit-test :
122
122
resource_class : xlarge
123
123
docker :
124
- - image : cimg/go:1.20
124
+ - image : cimg/go:1.21
125
125
steps :
126
126
- checkout
127
127
- run :
128
128
command : go run build/ci.go test
129
129
lint-geth :
130
130
resource_class : medium
131
131
docker :
132
- - image : cimg/go:1.20
132
+ - image : cimg/go:1.21
133
133
steps :
134
134
- checkout
135
135
- run :
136
136
command : go run build/ci.go lint
137
137
check-releases :
138
138
docker :
139
- - image : cimg/go:1.20
139
+ - image : cimg/go:1.21
140
140
steps :
141
141
- checkout
142
142
- run :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ARG VERSION=""
4
4
ARG BUILDNUM=""
5
5
6
6
# Build Geth in a stock Go builder container
7
- FROM golang:1.20 -alpine as builder
7
+ FROM golang:1.21 -alpine as builder
8
8
9
9
RUN apk add --no-cache gcc musl-dev linux-headers git
10
10
You can’t perform that action at this time.
0 commit comments