File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ARG VERSION=""
44ARG 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
99RUN apk add --no-cache gcc musl-dev linux-headers git
1010
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments