Skip to content

Commit 563511d

Browse files
authored
Merge pull request #4250 from cpanato/update-main
Update k8s-cloud-builder and k8s-ci-builder to Go 1.25.6
2 parents d60a2d3 + 52d7a69 commit 563511d

File tree

4 files changed

+37
-8
lines changed

4 files changed

+37
-8
lines changed

dependencies.yaml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,27 @@ dependencies:
171171
- path: images/build/go-runner/variants.yaml
172172
match: REVISION:\ '\d+'
173173

174+
# kube-cross (Kubernetes v1.36)
175+
- name: "registry.k8s.io/build-image/kube-cross: config variant (v1.36-go1.25)"
176+
version: go1.25-bullseye
177+
refPaths:
178+
- path: images/build/cross/variants.yaml
179+
match: "CONFIG: 'go\\d+.\\d+-bullseye'"
180+
181+
- name: "registry.k8s.io/build-image/kube-cross (v1.36-go1.25)"
182+
version: v1.36.0-go1.25.6-bullseye.0
183+
refPaths:
184+
- path: images/build/cross/variants.yaml
185+
match: "IMAGE_VERSION: 'v((([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)'"
186+
187+
- name: "registry.k8s.io/build-image/kube-cross: image revision (v1.36-go1.25)"
188+
version: 0
189+
refPaths:
190+
- path: images/build/cross/Makefile
191+
match: REVISION \?= \d+
192+
- path: images/build/cross/variants.yaml
193+
match: REVISION:\ '\d+'
194+
174195
# kube-cross (Kubernetes v1.35)
175196
- name: "registry.k8s.io/build-image/kube-cross: config variant (v1.35-go1.25)"
176197
version: go1.25-bullseye
@@ -278,7 +299,7 @@ dependencies:
278299

279300
# Golang (current release branch: master)
280301
- name: "golang: after kubernetes/kubernetes update (master)"
281-
version: 1.25.5
302+
version: 1.25.6
282303
refPaths:
283304
- path: images/releng/k8s-ci-builder/Makefile
284305
match: GO_VERSION\ \?=\ \d+.\d+(alpha|beta|rc)?\.?(\d+)?
@@ -308,7 +329,7 @@ dependencies:
308329

309330
# k8s-ci-builder
310331
- name: "golang: releng tooling for k8s-ci-builder (master)"
311-
version: 1.25.5
332+
version: 1.25.6
312333
refPaths:
313334
- path: images/releng/k8s-ci-builder/Makefile
314335
match: GO_VERSION_TOOLING\ \?=\ \d+.\d+(alpha|beta|rc)?\.?(\d+)?

images/k8s-cloud-builder/variants.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
variants:
2+
v1.36-cross1.25-bullseye:
3+
CONFIG: 'cross1.25'
4+
KUBE_CROSS_VERSION: 'v1.36.0-go1.25.6-bullseye.0'
25
v1.35-cross1.25-bullseye:
36
CONFIG: 'cross1.25'
47
KUBE_CROSS_VERSION: 'v1.35.0-go1.25.5-bullseye.0'

images/releng/k8s-ci-builder/Makefile

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

2626
# Build args
27-
GO_VERSION ?= 1.25.5
28-
GO_VERSION_TOOLING ?= 1.25.5
27+
GO_VERSION ?= 1.25.6
28+
GO_VERSION_TOOLING ?= 1.25.6
2929
OS_CODENAME ?= bullseye
3030
IMAGE_ARG ?= $(IMAGE):$(TAG)-$(CONFIG)
3131

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

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
variants:
22
default:
33
CONFIG: default
4-
GO_VERSION: '1.25.5'
5-
GO_VERSION_TOOLING: '1.25.5'
4+
GO_VERSION: '1.25.6'
5+
GO_VERSION_TOOLING: '1.25.6'
66
OS_CODENAME: 'bullseye'
77
next:
88
CONFIG: next
9-
GO_VERSION: '1.25.5'
10-
GO_VERSION_TOOLING: '1.25.5'
9+
GO_VERSION: '1.25.6'
10+
GO_VERSION_TOOLING: '1.25.6'
1111
OS_CODENAME: 'bookworm'
12+
'1.36':
13+
CONFIG: '1.36'
14+
GO_VERSION: '1.25.6'
15+
GO_VERSION_TOOLING: '1.25.6'
16+
OS_CODENAME: 'bullseye'
1217
'1.35':
1318
CONFIG: '1.35'
1419
GO_VERSION: '1.25.5'

0 commit comments

Comments
 (0)