Skip to content

Commit 098fe60

Browse files
authored
Merge pull request #2428 from xmudrii/go117
k8s-cloud-builder/k8s-ci-builder: build using Go 1.17.7
2 parents 3049d10 + 0fcd1a2 commit 098fe60

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ dependencies:
100100
match: go \d+.\d+
101101

102102
- name: "golang: after kubernetes/kubernetes update"
103-
version: 1.17.6
103+
version: 1.17.7
104104
refPaths:
105105
- path: images/releng/k8s-ci-builder/Dockerfile
106106
match: FROM golang:\d+.\d+(alpha|beta|rc)?\.?(\d+)-\${OS_CODENAME} AS builder
@@ -181,7 +181,7 @@ dependencies:
181181
match: REVISION:\ '\d+'
182182

183183
- name: "k8s.gcr.io/build-image/kube-cross: dependents bullseye"
184-
version: v1.24.0-go1.17.6-bullseye.0
184+
version: v1.24.0-go1.17.7-bullseye.0
185185
refPaths:
186186
- path: images/k8s-cloud-builder/variants.yaml
187187
match: "KUBE_CROSS_VERSION: 'v((([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)'"

images/k8s-cloud-builder/variants.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variants:
44
KUBE_CROSS_VERSION: 'v1.24.0-go1.18beta1-bullseye.0'
55
v1.24-cross1.17-bullseye:
66
CONFIG: 'cross1.17'
7-
KUBE_CROSS_VERSION: 'v1.24.0-go1.17.6-bullseye.0'
7+
KUBE_CROSS_VERSION: 'v1.24.0-go1.17.7-bullseye.0'
88
v1.23-cross1.17-bullseye:
99
CONFIG: 'cross1.17'
1010
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.6-bullseye.0'

images/releng/k8s-ci-builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ARG OS_CODENAME
1717

1818
# The Golang version for the builder image should always be explicitly set to
1919
# the Golang version of the kubernetes/kubernetes active development branch
20-
FROM golang:1.17.6-${OS_CODENAME} AS builder
20+
FROM golang:1.17.7-${OS_CODENAME} AS builder
2121

2222
WORKDIR /go/src/k8s.io/release
2323

images/releng/k8s-ci-builder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ IMAGE = $(REGISTRY)/$(IMGNAME)
2424
TAG ?= $(shell git describe --tags --always --dirty)
2525

2626
# Build args
27-
GO_VERSION ?= 1.17.6
27+
GO_VERSION ?= 1.17.7
2828
OS_CODENAME ?= bullseye
2929
IMAGE_ARG ?= $(IMAGE):$(TAG)-$(CONFIG)
3030

images/releng/k8s-ci-builder/variants.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variants:
22
default:
33
CONFIG: default
4-
GO_VERSION: '1.17.6'
4+
GO_VERSION: '1.17.7'
55
OS_CODENAME: 'bullseye'
66
next:
77
CONFIG: next

0 commit comments

Comments
 (0)