chore(deps): update golang docker tag to v1.24.0

This commit is contained in:
Renovate
2025-02-13 13:54:01 +00:00
parent f49156f637
commit 0d384e8a3f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ variables:
check:
stage: .pre
image: amd64/golang:1.23.6@sha256:c9ea99470c05ab0741496b239028480a072934a7a0286809740b3d77cb3ae011
image: amd64/golang:1.24.0@sha256:2ab98ed27417fb9ea17b7d1743c4e00f4bd8f7a2eb6e28a9b59fcdde990e9731
script:
- go install mvdan.cc/gofumpt@latest
- go install golang.org/x/tools/cmd/goimports@latest
@@ -38,7 +38,7 @@ build:
vulnerabilities:
stage: build
image: amd64/golang:1.23.6@sha256:c9ea99470c05ab0741496b239028480a072934a7a0286809740b3d77cb3ae011
image: amd64/golang:1.24.0@sha256:2ab98ed27417fb9ea17b7d1743c4e00f4bd8f7a2eb6e28a9b59fcdde990e9731
script:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:1.23.6@sha256:927112936d6b496ed95f55f362cc09da6e3e624ef868814c56d55bd7323e0959 as modules
FROM golang:1.24.0@sha256:2b1cbf278ce05a2a310a3d695ebb176420117a8cfcfcc4e5e68a1bef5f6354da as modules
WORKDIR /build
ADD go.* /build
RUN go mod download