Skip to content

Commit 143f361

Browse files
authored
Merge pull request #6179 from thaJeztah/bump_gotestsum
Dockerfile: bump gotest.tools/gotestsum v1.12.3 (for go1.25)
2 parents d7181e4 + 1264a59 commit 143f361

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
@@ -11,7 +11,10 @@ ARG BASE_DEBIAN_DISTRO=bookworm
1111
ARG GO_VERSION=1.24.5
1212
ARG XX_VERSION=1.6.1
1313
ARG GOVERSIONINFO_VERSION=v1.4.1
14-
ARG GOTESTSUM_VERSION=v1.12.0
14+
15+
# GOTESTSUM_VERSION sets the version of gotestsum to install in the dev container.
16+
# It must be a valid tag in the https://github.com/gotestyourself/gotestsum repository.
17+
ARG GOTESTSUM_VERSION=v1.12.3
1518

1619
# BUILDX_VERSION sets the version of buildx to use for the e2e tests.
1720
# 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
@@ -26,7 +26,9 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
2626
&& gofumpt --version
2727

2828
FROM golang AS gotestsum
29-
ARG GOTESTSUM_VERSION=v1.12.0
29+
# GOTESTSUM_VERSION sets the version of gotestsum to install in the dev container.
30+
# It must be a valid tag in the https://github.com/gotestyourself/gotestsum repository.
31+
ARG GOTESTSUM_VERSION=v1.12.3
3032
RUN --mount=type=cache,target=/root/.cache/go-build \
3133
--mount=type=cache,target=/go/pkg/mod \
3234
--mount=type=tmpfs,target=/go/src/ \

0 commit comments

Comments
 (0)