Skip to content

Commit

Permalink
Merge pull request #1717 from chris-j-h/update-base-image
Browse files Browse the repository at this point in the history
Update builder base image
  • Loading branch information
Krish1979 authored Jun 12, 2024
2 parents 7395f86 + d7b8ec1 commit 8585ac9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ jobs:
echo "::set-output name=dockerEnvFile::$docker_env_file"
- name: 'Run acceptance tests'
run: |
echo ${{ steps.setup.outputs.dockerEnvFile }}
cat ${{ steps.setup.outputs.dockerEnvFile }}
echo "docker run..."
docker run --rm \
--network host \
-v /var/run/docker.sock:/var/run/docker.sock \
Expand All @@ -161,6 +163,7 @@ jobs:
-Dauto.outputDir=${{ steps.setup.outputs.outputDir }} \
-Dtags="${{ matrix.tag }}"
- name: 'Debug'
if: always()
run: |
docker images
docker ps -a
2 changes: 1 addition & 1 deletion Dockerfile
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.21-alpine as builder
FROM golang:1.22-alpine as builder

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

Expand Down
2 changes: 1 addition & 1 deletion params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const (

QuorumVersionMajor = 24
QuorumVersionMinor = 4
QuorumVersionPatch = 0
QuorumVersionPatch = 1
)

// Version holds the textual version string.
Expand Down

0 comments on commit 8585ac9

Please sign in to comment.