Skip to content

Commit 1264a59

Browse files
committed
Dockerfile: bump gotest.tools/gotestsum v1.12.3 (for go1.25)
full diff: gotestyourself/gotestsum@v1.12.0...v1.12.3 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent c69d8bd commit 1264a59

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ ARG BASE_DEBIAN_DISTRO=bookworm
77
ARG GO_VERSION=1.24.5
88
ARG XX_VERSION=1.6.1
99
ARG GOVERSIONINFO_VERSION=v1.4.1
10-
ARG GOTESTSUM_VERSION=v1.12.0
10+
11+
# GOTESTSUM_VERSION sets the version of gotestsum to install in the dev container.
12+
# It must be a valid tag in the https://github.com/gotestyourself/gotestsum repository.
13+
ARG GOTESTSUM_VERSION=v1.12.3
1114

1215
# BUILDX_VERSION sets the version of buildx to use for the e2e tests.
1316
# It must be a tag in the docker.io/docker/buildx-bin image repository

dockerfiles/Dockerfile.dev

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
2222
&& gofumpt --version
2323

2424
FROM golang AS gotestsum
25-
ARG GOTESTSUM_VERSION=v1.12.0
25+
# GOTESTSUM_VERSION sets the version of gotestsum to install in the dev container.
26+
# It must be a valid tag in the https://github.com/gotestyourself/gotestsum repository.
27+
ARG GOTESTSUM_VERSION=v1.12.3
2628
RUN --mount=type=cache,target=/root/.cache/go-build \
2729
--mount=type=cache,target=/go/pkg/mod \
2830
--mount=type=tmpfs,target=/go/src/ \

0 commit comments

Comments
 (0)