From 2e34b6e86231aad5235bdbfc2fb57a07e1135c6f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Aug 2023 22:50:32 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.21 --- .github/workflows/build.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 13d8410..664942c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,7 +10,7 @@ jobs: test: runs-on: ubuntu-latest container: - image: golang:1.15-alpine + image: golang:1.21-alpine steps: - name: Download OS Dependencies run: apk add --no-cache git make bash curl tar gcc libc-dev sudo diff --git a/Dockerfile b/Dockerfile index b356aa4..ad529f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1.0-experimental -FROM golang:1.15-alpine as builder +FROM golang:1.21-alpine as builder ARG VERSION ENV GOCACHE "/go-build-cache" WORKDIR /src