Skip to content

Commit

Permalink
Bump go versions to 1.21 in cci and Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianst committed Jan 30, 2024
1 parent d35dd23 commit 662fa05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
build-geth:
docker:
- image: cimg/go:1.20
- image: cimg/go:1.21
resource_class: xlarge
steps:
- checkout
Expand All @@ -121,22 +121,22 @@ jobs:
unit-test:
resource_class: xlarge
docker:
- image: cimg/go:1.20
- image: cimg/go:1.21
steps:
- checkout
- run:
command: go run build/ci.go test
lint-geth:
resource_class: medium
docker:
- image: cimg/go:1.20
- image: cimg/go:1.21
steps:
- checkout
- run:
command: go run build/ci.go lint
check-releases:
docker:
- image: cimg/go:1.20
- image: cimg/go:1.21
steps:
- checkout
- run:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.alltools
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG VERSION=""
ARG BUILDNUM=""

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

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

Expand Down

0 comments on commit 662fa05

Please sign in to comment.