Skip to content

Commit ff0b5f2

Browse files
authored
Merge pull request #4003 from xrstf/go1259
Update to Go 1.25.9
2 parents 570235e + 522c5e5 commit ff0b5f2

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/docs-gen-and-push.yaml

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

3535
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # tag=v6.4.0
3636
with:
37-
go-version: v1.25.7
37+
go-version: v1.25.9
3838
cache: true
3939

4040
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 #tag=v6.2.0

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Go
4747
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # tag=v6.4.0
4848
with:
49-
go-version: v1.25.7
49+
go-version: v1.25.9
5050

5151
- name: Delete non-semver tags
5252
run: 'git tag -d $(git tag -l | grep -v "^v")'

.prow.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ presubmits:
77
preset-goproxy: "true"
88
spec:
99
containers:
10-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
10+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
1111
command:
1212
- make
1313
- verify-boilerplate
@@ -27,7 +27,7 @@ presubmits:
2727
preset-goproxy: "true"
2828
spec:
2929
containers:
30-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
30+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
3131
command:
3232
- make
3333
- verify-codegen
@@ -44,7 +44,7 @@ presubmits:
4444
preset-goproxy: "true"
4545
spec:
4646
containers:
47-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
47+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
4848
command:
4949
- make
5050
- lint
@@ -83,7 +83,7 @@ presubmits:
8383
preset-goproxy: "true"
8484
spec:
8585
containers:
86-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
86+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
8787
command:
8888
- make
8989
- test
@@ -104,7 +104,7 @@ presubmits:
104104
preset-goproxy: "true"
105105
spec:
106106
containers:
107-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
107+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
108108
command:
109109
- ./hack/run-with-prow.sh
110110
- ./hack/run-with-prometheus.sh
@@ -131,7 +131,7 @@ presubmits:
131131
preset-goproxy: "true"
132132
spec:
133133
containers:
134-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
134+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
135135
command:
136136
- ./hack/run-with-prow.sh
137137
- ./hack/run-with-prometheus.sh
@@ -158,7 +158,7 @@ presubmits:
158158
preset-goproxy: "true"
159159
spec:
160160
containers:
161-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
161+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
162162
command:
163163
- ./hack/run-with-prow.sh
164164
- ./hack/run-with-prometheus.sh
@@ -189,7 +189,7 @@ presubmits:
189189
preset-goproxy: "true"
190190
spec:
191191
containers:
192-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
192+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
193193
command:
194194
- ./hack/run-with-prow.sh
195195
- ./hack/run-with-prometheus.sh
@@ -216,7 +216,7 @@ presubmits:
216216
preset-goproxy: "true"
217217
spec:
218218
containers:
219-
- image: ghcr.io/kcp-dev/infra/build:1.25.7-1
219+
- image: ghcr.io/kcp-dev/infra/build:1.25.9-1
220220
command:
221221
- ./hack/run-with-prow.sh
222222
- ./hack/run-with-prometheus.sh

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616

1717
# Build the binary
18-
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.25.7 AS builder
18+
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.25.9 AS builder
1919
WORKDIR /workspace
2020

2121
# Install dependencies.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module github.com/kcp-dev/kcp
66
// The script hack/verify-go-versions.sh checks that all version
77
// references across the codebase are consistent with the versions
88
// maintained here.
9-
// go-build-version 1.25.7
9+
// go-build-version 1.25.9
1010
go 1.25.0
1111

1212
require (

staging/publishing/rules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,6 @@ rules:
185185
library: true
186186
recursive-delete-patterns:
187187
- '*/.gitattributes'
188-
default-go-version: 1.25.7
188+
default-go-version: 1.25.9
189189
skip-tags: false
190190
skip-non-semver-tags: true

0 commit comments

Comments
 (0)