[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 <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-12-30 10:21:06 +01:00
parent ea84732a77
commit 8dbc7420ed
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
ARG GO_VERSION=1.12.12
ARG GO_VERSION=1.12.14
FROM golang:${GO_VERSION}-alpine AS base

View File

@ -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

View File

@ -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.