chore(deps): update golang docker tag to v1.24.6 #549

Merged
group_2759636_bot_1c34751f7eccad09e089ac15ee7bd902 merged 1 commits from renovate/golang-1.x into main 2025-08-07 06:41:11 +00:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ variables:
check:
stage: .pre
image: amd64/golang:1.24.5@sha256:0a156a4a26df7babc9944fa442dfe38e9f867b45869e182d056a174b7f949f8c
image: amd64/golang:1.24.6@sha256:1e13b597ac2fd661f71659cf3b11f20db5c92040cbfc8e12e7feb57f068ad701
script:
- go install mvdan.cc/gofumpt@latest
- go install golang.org/x/tools/cmd/goimports@latest
@@ -40,7 +40,7 @@ build:
vulnerabilities:
stage: build
image: amd64/golang:1.24.5@sha256:0a156a4a26df7babc9944fa442dfe38e9f867b45869e182d056a174b7f949f8c
image: amd64/golang:1.24.6@sha256:1e13b597ac2fd661f71659cf3b11f20db5c92040cbfc8e12e7feb57f068ad701
script:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
+1 -1
View File
@@ -1,4 +1,4 @@
FROM amd64/golang:1.24.5@sha256:0a156a4a26df7babc9944fa442dfe38e9f867b45869e182d056a174b7f949f8c as modules
FROM amd64/golang:1.24.6@sha256:1e13b597ac2fd661f71659cf3b11f20db5c92040cbfc8e12e7feb57f068ad701 as modules
WORKDIR /build
ADD go.* /build
RUN go mod download