From 611647a40eeeca51c6faa70fc8cb6875c98d46e0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 10:31:03 +0000 Subject: [PATCH] deps: update golang docker tag --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b3f4f85a..948f853c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,7 +18,7 @@ cache: build: stage: build - image: golang:1.21 + image: golang:1.22 script: - go env - go mod download @@ -31,21 +31,21 @@ test:lint: test:tidy: stage: test - image: golang:1.21 + image: golang:1.22 script: - go mod tidy -v - git diff --exit-code test:generate: stage: test - image: golang:1.21 + image: golang:1.22 script: - go generate ./... - git diff --exit-code test:unit: stage: test - image: golang:1.21 + image: golang:1.22 script: - go test -v -coverprofile=coverage.txt -covermode count ./... - go get github.com/boumenot/gocover-cobertura