Skip to content

Commit 27e508d

Browse files
authored
Merge pull request #3739 from xrstf/go12411
update to Go 1.24.11
2 parents 446d518 + db9246d commit 27e508d

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

.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@4dc6199c7b1a012772edbd06daecab0f50c9053c # tag=v6.1.0
3636
with:
37-
go-version: v1.24.9
37+
go-version: v1.24.11
3838
cache: true
3939

4040
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 #tag=v6.1.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@4dc6199c7b1a012772edbd06daecab0f50c9053c # tag=v6.1.0
4848
with:
49-
go-version: v1.24.9
49+
go-version: v1.24.11
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.24.9-1
10+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-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.24.9-1
30+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-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.24.9-1
47+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-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.24.9-1
86+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-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.24.9-1
107+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-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.24.9-1
134+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
135135
command:
136136
- ./hack/run-with-prow.sh
137137
- ./hack/run-with-prometheus.sh
@@ -160,7 +160,7 @@ presubmits:
160160
preset-goproxy: "true"
161161
spec:
162162
containers:
163-
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
163+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
164164
command:
165165
- ./hack/run-with-prow.sh
166166
- ./hack/run-with-prometheus.sh
@@ -193,7 +193,7 @@ presubmits:
193193
preset-goproxy: "true"
194194
spec:
195195
containers:
196-
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
196+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
197197
command:
198198
- ./hack/run-with-prow.sh
199199
- ./hack/run-with-prometheus.sh
@@ -222,7 +222,7 @@ presubmits:
222222
preset-goproxy: "true"
223223
spec:
224224
containers:
225-
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
225+
- image: ghcr.io/kcp-dev/infra/build:1.24.11-1
226226
command:
227227
- ./hack/run-with-prow.sh
228228
- ./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.24.9 AS builder
18+
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.24.11 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.24.9
9+
// go-build-version 1.24.11
1010
go 1.24.0
1111

1212
require (

staging/publishing/rules.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rules:
77
dirs:
88
- staging/src/github.com/kcp-dev/apimachinery
99
- name: release-0.29
10-
go: 1.24.9
10+
go: 1.24.11
1111
source:
1212
branch: release-0.29
1313
dirs:
@@ -22,7 +22,7 @@ rules:
2222
dirs:
2323
- staging/src/github.com/kcp-dev/code-generator
2424
- name: release-0.29
25-
go: 1.24.9
25+
go: 1.24.11
2626
source:
2727
branch: release-0.29
2828
dirs:
@@ -42,7 +42,7 @@ rules:
4242
dirs:
4343
- staging/src/github.com/kcp-dev/client-go
4444
- name: release-0.29
45-
go: 1.24.9
45+
go: 1.24.11
4646
dependencies:
4747
- repository: apimachinery
4848
branch: release-0.29
@@ -69,7 +69,7 @@ rules:
6969
dirs:
7070
- staging/src/github.com/kcp-dev/sdk
7171
- name: release-0.29
72-
go: 1.24.9
72+
go: 1.24.11
7373
dependencies:
7474
- repository: apimachinery
7575
branch: release-0.29
@@ -100,7 +100,7 @@ rules:
100100
dirs:
101101
- staging/src/github.com/kcp-dev/cli
102102
- name: release-0.29
103-
go: 1.24.9
103+
go: 1.24.11
104104
dependencies:
105105
- repository: apimachinery
106106
branch: release-0.29
@@ -118,6 +118,6 @@ rules:
118118
library: true
119119
recursive-delete-patterns:
120120
- '*/.gitattributes'
121-
default-go-version: 1.24.9
121+
default-go-version: 1.24.11
122122
skip-tags: false
123123
skip-non-semver-tags: true

0 commit comments

Comments
 (0)