Skip to content

Commit b7b096c

Browse files
authored
Merge pull request #2630 from cpanato/cloud-builder-go118117
k8s-cloud-builder/k8s-ci-builder: build using go1.18.5 and go1.17.13
2 parents 9cc99a0 + ed7b6e7 commit b7b096c

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

dependencies.yaml

Lines changed: 8 additions & 8 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.18.4
103+
version: 1.18.5
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.25.0-go1.18.4-bullseye.0
184+
version: v1.25.0-go1.18.5-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-]+)*))?)'"
@@ -231,7 +231,7 @@ dependencies:
231231
match: "CONFIG: 'go\\d+.\\d+-bullseye'"
232232

233233
- name: "k8s.gcr.io/build-image/kube-cross: dependents (next candidate)"
234-
version: v1.25.0-go1.18.4-bullseye.0
234+
version: v1.25.0-go1.18.5-bullseye.0
235235
refPaths:
236236
- path: images/k8s-cloud-builder/variants.yaml
237237
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-]+)*))?)'"
@@ -248,7 +248,7 @@ dependencies:
248248
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
249249

250250
- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.24)"
251-
version: 1.18.4
251+
version: 1.18.5
252252
refPaths:
253253
- path: images/releng/k8s-ci-builder/variants.yaml
254254
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
@@ -265,13 +265,13 @@ dependencies:
265265
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
266266

267267
- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.23)"
268-
version: 1.17.12
268+
version: 1.17.13
269269
refPaths:
270270
- path: images/releng/k8s-ci-builder/variants.yaml
271271
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
272272

273-
# Golang (previous release branches: 1.22, 1.21)
274-
- name: "golang (previous release branches: 1.22, 1.21)"
273+
# Golang (previous release branches: 1.22)
274+
- name: "golang (previous release branches: 1.22)"
275275
version: 1.16.15
276276
refPaths:
277277
- path: images/build/cross/variants.yaml
@@ -281,7 +281,7 @@ dependencies:
281281
- path: images/releng/ci/variants.yaml
282282
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
283283

284-
- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.22, 1.21)"
284+
- name: "golang: after kubernetes/kubernetes update (previous release branches: 1.22)"
285285
version: 1.16.15
286286
refPaths:
287287
- path: images/releng/k8s-ci-builder/variants.yaml
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
variants:
22
v1.25-cross1.18-bullseye:
33
CONFIG: 'cross1.18'
4-
KUBE_CROSS_VERSION: 'v1.25.0-go1.18.4-bullseye.0'
4+
KUBE_CROSS_VERSION: 'v1.25.0-go1.18.5-bullseye.0'
55
v1.24-cross1.18-bullseye:
66
CONFIG: 'cross1.18'
7-
KUBE_CROSS_VERSION: 'v1.24.0-go1.18.4-bullseye.0'
7+
KUBE_CROSS_VERSION: 'v1.24.0-go1.18.5-bullseye.0'
88
v1.23-cross1.17-bullseye:
99
CONFIG: 'cross1.17'
10-
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.12-bullseye.0'
10+
KUBE_CROSS_VERSION: 'v1.23.0-go1.17.13-bullseye.0'
1111
v1.22-cross1.16-buster:
1212
CONFIG: 'cross1.16'
1313
KUBE_CROSS_VERSION: 'v1.22.0-go1.16.15-buster.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.18.4-${OS_CODENAME} AS builder
20+
FROM golang:1.18.5-${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.18.4
27+
GO_VERSION ?= 1.18.5
2828
OS_CODENAME ?= bullseye
2929
IMAGE_ARG ?= $(IMAGE):$(TAG)-$(CONFIG)
3030

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variants:
22
default:
33
CONFIG: default
4-
GO_VERSION: '1.18.4'
4+
GO_VERSION: '1.18.5'
55
OS_CODENAME: 'bullseye'
66
next:
77
CONFIG: next
@@ -13,11 +13,11 @@ variants:
1313
OS_CODENAME: 'bullseye'
1414
'1.24':
1515
CONFIG: '1.24'
16-
GO_VERSION: '1.18.4'
16+
GO_VERSION: '1.18.5'
1717
OS_CODENAME: 'bullseye'
1818
'1.23':
1919
CONFIG: '1.23'
20-
GO_VERSION: '1.17.12'
20+
GO_VERSION: '1.17.13'
2121
OS_CODENAME: 'bullseye'
2222
'1.22':
2323
CONFIG: '1.22'

0 commit comments

Comments
 (0)