From dfa46f8d479920b56807b18eacb4d1bab6817e96 Mon Sep 17 00:00:00 2001 From: Jintao Zhang Date: Fri, 12 Jul 2019 07:16:25 +0800 Subject: [PATCH] Update to go 1.12.7 Signed-off-by: Jintao Zhang --- build/build-image/cross/Dockerfile | 2 +- build/build-image/cross/VERSION | 2 +- build/dependencies.yaml | 2 +- build/root/WORKSPACE | 6 +++--- test/images/Makefile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build/build-image/cross/Dockerfile b/build/build-image/cross/Dockerfile index 47ac3ba56f9..051f8bed623 100644 --- a/build/build-image/cross/Dockerfile +++ b/build/build-image/cross/Dockerfile @@ -15,7 +15,7 @@ # This file creates a standard build environment for building cross # platform go binary for the architecture kubernetes cares about. -FROM golang:1.12.6 +FROM golang:1.12.7 ENV GOARM 7 ENV KUBE_DYNAMIC_CROSSPLATFORMS \ diff --git a/build/build-image/cross/VERSION b/build/build-image/cross/VERSION index 2d949b553c4..e71b7503261 100644 --- a/build/build-image/cross/VERSION +++ b/build/build-image/cross/VERSION @@ -1 +1 @@ -v1.12.6-1 +v1.12.7-1 diff --git a/build/dependencies.yaml b/build/dependencies.yaml index aadc939fd4f..1887e1f2aac 100644 --- a/build/dependencies.yaml +++ b/build/dependencies.yaml @@ -34,7 +34,7 @@ dependencies: - name: "golang" - version: 1.12.6 + version: 1.12.7 refPaths: - path: build/build-image/cross/Dockerfile match: "golang:" diff --git a/build/root/WORKSPACE b/build/root/WORKSPACE index 0446f4715e8..56557283d5c 100644 --- a/build/root/WORKSPACE +++ b/build/root/WORKSPACE @@ -44,8 +44,8 @@ http_archive( http_archive( name = "io_bazel_rules_go", - sha256 = "ce1afed0075e01bd883cfbafbbcc26bfab392eb24854e07a20be78ab13f9e15e", - urls = mirror("https://github.com/bazelbuild/rules_go/releases/download/0.17.7/rules_go-0.17.7.tar.gz"), + sha256 = "38113392bac83252d2e6450b0056e41f35b2469903e319688883598ce38f0377", + urls = mirror("https://github.com/bazelbuild/rules_go/releases/download/0.17.8/rules_go-0.17.8.tar.gz"), ) load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") @@ -53,7 +53,7 @@ load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_depe go_rules_dependencies() go_register_toolchains( - go_version = "1.12.6", + go_version = "1.12.7", ) http_archive( diff --git a/test/images/Makefile b/test/images/Makefile index bffba54718f..2cd0ee16722 100644 --- a/test/images/Makefile +++ b/test/images/Makefile @@ -17,7 +17,7 @@ include ../../hack/make-rules/Makefile.manifest REGISTRY ?= gcr.io/kubernetes-e2e-test-images GOARM ?= 7 QEMUVERSION=v2.9.1 -GOLANG_VERSION=1.12.6 +GOLANG_VERSION=1.12.7 export ifndef WHAT