Skip to content

Commit e26fff5

Browse files
committedFeb 27, 2020
Update to golang@1.13.8
Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
1 parent 6b13bef commit e26fff5

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed
 

‎build/build-image/cross/Dockerfile

+1-1
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.13.6
18+
FROM golang:1.13.8
1919

2020
ENV GOARM 7
2121
ENV KUBE_DYNAMIC_CROSSPLATFORMS \

‎build/build-image/cross/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.13.6-1
1+
v1.13.8-1

‎build/dependencies.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies:
3232

3333

3434
- name: "golang"
35-
version: 1.13.6
35+
version: 1.13.8
3636
refPaths:
3737
- path: build/build-image/cross/Dockerfile
3838
match: "golang:"

‎build/root/WORKSPACE

+3-3
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 = "0a99597dd30ecfd94f64fc64717cd1b6c4bd9807918942a8501a3883990e4b1d",
48-
urls = mirror("https://github.com/bazelbuild/rules_go/releases/download/v0.19.10/rules_go-v0.19.10.tar.gz"),
47+
sha256 = "62bedd372f125fe62c16c0cc2ad9d7a2b6a1171d639933a5651a729fdce497fc",
48+
urls = mirror("https://github.com/bazelbuild/rules_go/releases/download/v0.20.7/rules_go-v0.20.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.13.6",
56+
go_version = "1.13.8",
5757
)
5858

5959
http_archive(

‎test/images/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
REGISTRY ?= gcr.io/kubernetes-e2e-test-images
1616
GOARM ?= 7
1717
QEMUVERSION=v2.9.1
18-
GOLANG_VERSION=1.13.6
18+
GOLANG_VERSION=1.13.8
1919
export
2020

2121
ifndef WHAT

‎test/images/sample-apiserver/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM us.gcr.io/k8s-artifacts-prod/build-image/kube-cross:v1.13.6-1 as build_k8s_1_17_sample_apiserver
15+
FROM us.gcr.io/k8s-artifacts-prod/build-image/kube-cross:v1.13.8-1 as build_k8s_1_17_sample_apiserver
1616

1717
ENV GOPATH /go
1818
RUN mkdir -p ${GOPATH}/src ${GOPATH}/bin

0 commit comments

Comments
 (0)
Please sign in to comment.