diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2f70f7e..05942c3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ variables: check: stage: .pre - image: amd64/golang:1.24.1@sha256:5ecf3334c3970cf435bf821e0b7c48276ca8f00459fbfa107f4702e59e011d97 + image: amd64/golang:1.24.2@sha256:81b44f328549e8356fda6707346ff8a6589fe250eeb4ea5f21669c7d24b36dae 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.24.1@sha256:5ecf3334c3970cf435bf821e0b7c48276ca8f00459fbfa107f4702e59e011d97 + image: amd64/golang:1.24.2@sha256:81b44f328549e8356fda6707346ff8a6589fe250eeb4ea5f21669c7d24b36dae script: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index 141f26c..ebf5a58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM amd64/golang:1.24.1@sha256:5ecf3334c3970cf435bf821e0b7c48276ca8f00459fbfa107f4702e59e011d97 as modules +FROM amd64/golang:1.24.2@sha256:81b44f328549e8356fda6707346ff8a6589fe250eeb4ea5f21669c7d24b36dae as modules WORKDIR /build ADD go.* /build RUN go mod download