Skip to content

Commit 8585ac9

Browse files
authored
Merge pull request #1717 from chris-j-h/update-base-image
Update builder base image
2 parents 7395f86 + d7b8ec1 commit 8585ac9

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,9 @@ jobs:
150150
echo "::set-output name=dockerEnvFile::$docker_env_file"
151151
- name: 'Run acceptance tests'
152152
run: |
153+
echo ${{ steps.setup.outputs.dockerEnvFile }}
153154
cat ${{ steps.setup.outputs.dockerEnvFile }}
155+
echo "docker run..."
154156
docker run --rm \
155157
--network host \
156158
-v /var/run/docker.sock:/var/run/docker.sock \
@@ -161,6 +163,7 @@ jobs:
161163
-Dauto.outputDir=${{ steps.setup.outputs.outputDir }} \
162164
-Dtags="${{ matrix.tag }}"
163165
- name: 'Debug'
166+
if: always()
164167
run: |
165168
docker images
166169
docker ps -a

Dockerfile

Lines changed: 1 addition & 1 deletion
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.21-alpine as builder
7+
FROM golang:1.22-alpine as builder
88

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

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const (
2828

2929
QuorumVersionMajor = 24
3030
QuorumVersionMinor = 4
31-
QuorumVersionPatch = 0
31+
QuorumVersionPatch = 1
3232
)
3333

3434
// Version holds the textual version string.

0 commit comments

Comments
 (0)