From ad1e6bae4f4b56d56b6da67aedb31ae8f03b24ae Mon Sep 17 00:00:00 2001 From: Jintao Zhang Date: Fri, 16 Aug 2019 10:02:22 +0800 Subject: [PATCH] Bump Golang 1.12.9 Signed-off-by: Jintao Zhang (cherry picked from commit 01d6a566997784e44c34eb4b06bd9bc022237d4e) 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 6bd07caa7b638..143dec64073f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ # ARG CROSS="false" -ARG GO_VERSION=1.12.8 +ARG GO_VERSION=1.12.9 ARG DEBIAN_FRONTEND=noninteractive FROM golang:${GO_VERSION}-stretch AS base diff --git a/Dockerfile.e2e b/Dockerfile.e2e index cd8742a8f0fb1..44765164b1373 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.12.8 +ARG GO_VERSION=1.12.9 FROM golang:${GO_VERSION}-alpine AS base diff --git a/Dockerfile.simple b/Dockerfile.simple index b2ccfa4bf00c1..3ecccd86cd2c9 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.8 +ARG GO_VERSION=1.12.9 FROM golang:${GO_VERSION}-stretch diff --git a/Dockerfile.windows b/Dockerfile.windows index 741f5fcc3efc5..f18b5260cc994 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.8 +ARG GO_VERSION=1.12.9 # Environment variable notes: # - GO_VERSION must be consistent with 'Dockerfile' used by Linux.