From 8dbc7420ed592119af915c2cd4d7a7d90feca3be Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 30 Dec 2019 10:21:06 +0100 Subject: [PATCH] [19.03] Bump Golang 1.12.14 go1.12.14 (released 2019/12/04) includes a fix to the runtime. See the Go 1.12.14 milestone on our issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.12.14+label%3ACherryPickApproved Update Golang 1.12.13 ------------------------ go1.12.13 (released 2019/10/31) fixes an issue on macOS 10.15 Catalina where the non-notarized installer and binaries were being rejected by Gatekeeper. Only macOS users who hit this issue need to update. Signed-off-by: Sebastiaan van Stijn --- Dockerfile | 2 +- Dockerfile.e2e | 2 +- Dockerfile.simple | 2 +- Dockerfile.windows | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 766db8a1b6..556cef3a64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ # ARG CROSS="false" -ARG GO_VERSION=1.12.12 +ARG GO_VERSION=1.12.14 ARG DEBIAN_FRONTEND=noninteractive FROM golang:${GO_VERSION}-stretch AS base diff --git a/Dockerfile.e2e b/Dockerfile.e2e index b18b3ab35c..c53928ccf3 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.12.12 +ARG GO_VERSION=1.12.14 FROM golang:${GO_VERSION}-alpine AS base diff --git a/Dockerfile.simple b/Dockerfile.simple index 839675e028..ac08837715 100644 --- a/Dockerfile.simple +++ b/Dockerfile.simple @@ -5,7 +5,7 @@ # This represents the bare minimum required to build and test Docker. -ARG GO_VERSION=1.12.12 +ARG GO_VERSION=1.12.14 FROM golang:${GO_VERSION}-stretch diff --git a/Dockerfile.windows b/Dockerfile.windows index 4f39676f4b..36b12f864a 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -165,7 +165,7 @@ FROM microsoft/windowsservercore # Use PowerShell as the default shell SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] -ARG GO_VERSION=1.12.12 +ARG GO_VERSION=1.12.14 # Environment variable notes: # - GO_VERSION must be consistent with 'Dockerfile' used by Linux.