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

This commit is contained in:
Renovate
2024-10-02 01:54:47 +00:00
committed by Joakim Olsson
parent 93ea2f1627
commit 9203cc3396
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ run-pre-commit:
check:
stage: .pre
image: golang:1.23.1
image: golang:1.23.2
script:
- go install mvdan.cc/gofumpt@latest
- go install golang.org/x/tools/cmd/goimports@latest
@@ -54,7 +54,7 @@ build:
vulnerabilities:
stage: build
image: golang:1.23.1
image: golang:1.23.2
script:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:1.23.1 as modules
FROM golang:1.23.2 as modules
WORKDIR /build
ADD go.* /build
RUN go mod download