From 046a5b15c5c7cf9df3e53f493dcaa61a6821f5f1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 9 Sep 2021 20:50:01 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.17.1 --- .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..d928974 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ default: - image: golang:1.16.5-alpine + image: golang:1.17.1-alpine stages: - lint diff --git a/Dockerfile b/Dockerfile index 9b5d159..3331515 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.5-alpine as builder +FROM golang:1.17.1-alpine as builder RUN apk update && \ apk add --no-cache git ca-certificates && \