From fc3d3e73467177b09c5b164030c1ac83e285e957 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 05:55:40 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.21.3 --- .gitlab-ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1836653..5657831 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ default: - image: golang:1.16.5-alpine + image: golang:1.21.3-alpine stages: - lint diff --git a/Dockerfile b/Dockerfile index 9b5d159..469ad3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.5-alpine as builder +FROM golang:1.21.3-alpine as builder RUN apk update && \ apk add --no-cache git ca-certificates && \