Skip to content

Commit 36c34f6

Browse files
committed
Fix make vendor
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/[email protected]"]: failed to execute 'go [get github.com/docker/[email protected]]': failed to execute binary "go" with args [get github.com/docker/[email protected]]: go: go.mod requires go >= 1.23.8 (running go 1.23.7; GOTOOLCHAIN=local) 0.119 *errors.errorString ``` Signed-off-by: Paweł Gronowski <[email protected]>
1 parent e4bb9a9 commit 36c34f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# check=skip=InvalidBaseImagePlatform
33

44
ARG ALPINE_VERSION=3.21
5-
ARG GO_VERSION=1.23
5+
ARG GO_VERSION=1.23.8
66
ARG HTMLTEST_VERSION=0.17.0
77
ARG HUGO_VERSION=0.141.0
88
ARG NODE_VERSION=22

0 commit comments

Comments
 (0)