Skip to content

Commit e570e3e

Browse files
committed
Update to use go1.12.12
1 parent a78a403 commit e570e3e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

build/build-image/cross/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# This file creates a standard build environment for building cross
1616
# platform go binary for the architecture kubernetes cares about.
1717

18-
FROM golang:1.12.10
18+
FROM golang:1.12.12
1919

2020
ENV GOARM 7
2121
ENV KUBE_DYNAMIC_CROSSPLATFORMS \

build/build-image/cross/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.12.10-1
1+
v1.12.12-1

build/dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies:
3434

3535

3636
- name: "golang"
37-
version: 1.12.10
37+
version: 1.12.12
3838
refPaths:
3939
- path: build/build-image/cross/Dockerfile
4040
match: "golang:"

build/root/WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ http_archive(
4444

4545
http_archive(
4646
name = "io_bazel_rules_go",
47-
sha256 = "5c02dd4436332f8efa982ce2102daf7c041ae95c2bc7f2d26aceed20dc47def8",
48-
urls = mirror("https://github.com/bazelbuild/rules_go/releases/download/v0.18.11/rules_go-v0.18.11.tar.gz"),
47+
sha256 = "b480589f57e8b09f4b0892437b9afe889e0d6660e92f5d53d3f0546c01e67ca5",
48+
urls = mirror("https://github.com/bazelbuild/rules_go/releases/download/v0.19.7/rules_go-v0.19.7.tar.gz"),
4949
)
5050

5151
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
5252

5353
go_rules_dependencies()
5454

5555
go_register_toolchains(
56-
go_version = "1.12.10",
56+
go_version = "1.12.12",
5757
)
5858

5959
http_archive(

test/images/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ include ../../hack/make-rules/Makefile.manifest
1717
REGISTRY ?= gcr.io/kubernetes-e2e-test-images
1818
GOARM ?= 7
1919
QEMUVERSION=v2.9.1
20-
GOLANG_VERSION=1.12.10
20+
GOLANG_VERSION=1.12.12
2121
export
2222

2323
ifndef WHAT

0 commit comments

Comments
 (0)