From 5418bdd2d67d1cddf723b8e6385814217eb3520f Mon Sep 17 00:00:00 2001 From: jannfis Date: Fri, 28 May 2021 17:34:41 +0200 Subject: [PATCH] chore: Update Golang to v1.16.4 Signed-off-by: jannfis --- .github/workflows/image.yaml | 2 +- .github/workflows/release.yaml | 2 +- Dockerfile | 2 +- test/container/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml index a3576b942af08..4ec272fcebf63 100644 --- a/.github/workflows/image.yaml +++ b/.github/workflows/image.yaml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/setup-go@v1 with: - go-version: '1.16.2' + go-version: '1.16.4' - uses: actions/checkout@master with: path: src/github.com/argoproj/argo-cd diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e66091ea27734..42a88b65e6233 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -139,7 +139,7 @@ jobs: - name: Setup Golang uses: actions/setup-go@v1 with: - go-version: '1.16.2' + go-version: '1.16.4' - name: Setup Git author information run: | diff --git a/Dockerfile b/Dockerfile index d9c19438258e0..24563b104b215 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG BASE_IMAGE=docker.io/library/ubuntu:20.10 # Initial stage which pulls prepares build dependencies and CLI tooling we need for our final image # Also used as the image in CI jobs so needs all dependencies #################################################################################################### -FROM docker.io/library/golang:1.16.2 as builder +FROM docker.io/library/golang:1.16.4 as builder RUN echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list diff --git a/test/container/Dockerfile b/test/container/Dockerfile index 4cdc2b54f7d68..7064543ad92af 100644 --- a/test/container/Dockerfile +++ b/test/container/Dockerfile @@ -2,7 +2,7 @@ FROM redis:6.2.1 as redis FROM node:12.18.4 as node -FROM golang:1.16.0 as golang +FROM golang:1.16.4 as golang FROM registry:2.7.1 as registry