Skip to content

Commit 662fa05

Browse files
committed
Bump go versions to 1.21 in cci and Dockerfiles
1 parent d35dd23 commit 662fa05

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
113113
build-geth:
114114
docker:
115-
- image: cimg/go:1.20
115+
- image: cimg/go:1.21
116116
resource_class: xlarge
117117
steps:
118118
- checkout
@@ -121,22 +121,22 @@ jobs:
121121
unit-test:
122122
resource_class: xlarge
123123
docker:
124-
- image: cimg/go:1.20
124+
- image: cimg/go:1.21
125125
steps:
126126
- checkout
127127
- run:
128128
command: go run build/ci.go test
129129
lint-geth:
130130
resource_class: medium
131131
docker:
132-
- image: cimg/go:1.20
132+
- image: cimg/go:1.21
133133
steps:
134134
- checkout
135135
- run:
136136
command: go run build/ci.go lint
137137
check-releases:
138138
docker:
139-
- image: cimg/go:1.20
139+
- image: cimg/go:1.21
140140
steps:
141141
- checkout
142142
- run:

Dockerfile.alltools

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG VERSION=""
44
ARG BUILDNUM=""
55

66
# Build Geth in a stock Go builder container
7-
FROM golang:1.20-alpine as builder
7+
FROM golang:1.21-alpine as builder
88

99
RUN apk add --no-cache gcc musl-dev linux-headers git
1010

0 commit comments

Comments
 (0)