From 64888a00c1785c957a34b6601a47bb6a09d9db39 Mon Sep 17 00:00:00 2001 From: Alex Collins Date: Fri, 14 May 2021 16:17:32 -0700 Subject: [PATCH] ok Signed-off-by: Alex Collins --- .github/workflows/ci-build.yaml | 6 +++--- .github/workflows/gh-pages.yaml | 2 +- .github/workflows/release.yaml | 2 +- Dockerfile | 2 +- Dockerfile.windows | 2 +- Makefile | 2 +- go.mod | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 6fa690dd5323..aec335613ba7 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: "1.15.7" + go-version: "1.16" - uses: actions/cache@v2 with: path: /home/runner/.cache/go-build @@ -76,7 +76,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: "1.15.7" + go-version: "1.16" - uses: actions/cache@v2 with: path: /home/runner/.cache/go-build @@ -139,7 +139,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: "1.15.7" + go-version: "1.16" - uses: actions/cache@v2 with: path: /home/runner/.cache/go-build diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index 4fd8e87ecda6..14ff964d6cbb 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -17,7 +17,7 @@ jobs: - name: Setup Golang uses: actions/setup-go@v1 with: - go-version: '1.15.7' + go-version: '1.16' - name: build run: | pip install mkdocs==1.0.4 mkdocs_material==4.1.1 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 30f2dd837d47..c634f966df1c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -363,7 +363,7 @@ jobs: key: ${{ runner.os }}-node-dep-v1-${{ hashFiles('**/yarn.lock') }} - uses: actions/setup-go@v2 with: - go-version: "1.15.7" + go-version: "1.16" - uses: actions/cache@v2 with: path: /home/runner/.cache/go-build diff --git a/Dockerfile b/Dockerfile index a940e7588ed1..a8d65c3d61f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG DOCKER_VERSION=18.09.1 ARG KUBECTL_VERSION=1.19.6 ARG JQ_VERSION=1.6 -FROM docker.io/library/golang:1.15.7 as builder +FROM docker.io/library/golang:1.16 as builder RUN apt-get update && apt-get --no-install-recommends install -y \ git \ diff --git a/Dockerfile.windows b/Dockerfile.windows index f3d793d596bf..d4facccaf425 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -8,7 +8,7 @@ ARG IMAGE_OS_VERSION=1809 # had issues with official golange image for windows so I'm using plain servercore FROM mcr.microsoft.com/windows/servercore:${IMAGE_OS_VERSION} as builder -ENV GOLANG_VERSION=1.15.7 +ENV GOLANG_VERSION=1.16 SHELL ["powershell", "-Command"] # install chocolatey package manager diff --git a/Makefile b/Makefile index 3115e5f43bf8..b5094eb4be91 100644 --- a/Makefile +++ b/Makefile @@ -446,7 +446,7 @@ dist/argosay: .PHONY: pull-images pull-images: - docker pull golang:1.15.7 + docker pull golang:1.16 docker pull debian:10.7-slim docker pull mysql:8 docker pull argoproj/argosay:v1 diff --git a/go.mod b/go.mod index 6b76e1cfa769..52f6394b96ea 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/argoproj/argo-workflows/v3 -go 1.15 +go 1.16 require ( cloud.google.com/go v0.55.0 // indirect