From 36c34f6430f316f82b081781f1d6e0c5a7d49f03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Wed, 16 Apr 2025 13:34:43 +0200 Subject: [PATCH] Fix `make vendor` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit changes the golang image to one that uses the Go 1.23.8. 1.23-alpine3.21 is still on go 1.23.7 and current `go.mod` requires go1.23.8 which makes the `make vendor` fail with: ``` 0.117 go: go.mod requires go >= 1.23.8 (running go 1.23.7; GOTOOLCHAIN=local) 0.119 Error: failed to get ["github.com/docker/cli@v28.1.0-rc.1"]: failed to execute 'go [get github.com/docker/cli@v28.1.0-rc.1]': failed to execute binary "go" with args [get github.com/docker/cli@v28.1.0-rc.1]: go: go.mod requires go >= 1.23.8 (running go 1.23.7; GOTOOLCHAIN=local) 0.119 *errors.errorString ``` Signed-off-by: Paweł Gronowski --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cfe29a65fbf6..c7e22db80cc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # check=skip=InvalidBaseImagePlatform ARG ALPINE_VERSION=3.21 -ARG GO_VERSION=1.23 +ARG GO_VERSION=1.23.8 ARG HTMLTEST_VERSION=0.17.0 ARG HUGO_VERSION=0.141.0 ARG NODE_VERSION=22