From e91d6e5fe8ab5cc3ae7bcd401f494aa8122a03e2 Mon Sep 17 00:00:00 2001 From: Christoph Mewes Date: Thu, 7 May 2026 21:43:23 +0200 Subject: [PATCH] [release-0.31] bump to Go 1.25.10 On-behalf-of: @SAP christoph.mewes@sap.com --- .github/workflows/docs-gen-and-push.yaml | 2 +- .github/workflows/goreleaser.yml | 2 +- .prow.yaml | 18 +++++++++--------- Dockerfile | 2 +- go.mod | 2 +- staging/publishing/rules.yaml | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/docs-gen-and-push.yaml b/.github/workflows/docs-gen-and-push.yaml index 6a7f8ee4db4..ecca825b4e8 100644 --- a/.github/workflows/docs-gen-and-push.yaml +++ b/.github/workflows/docs-gen-and-push.yaml @@ -34,7 +34,7 @@ jobs: - uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # tag=v6.4.0 with: - go-version: v1.25.9 + go-version: v1.25.10 cache: true - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 #tag=v6.2.0 diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 7abcb04036b..99d24be4f76 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Go uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # tag=v6.4.0 with: - go-version: v1.25.9 + go-version: v1.25.10 - name: Delete non-semver tags run: 'git tag -d $(git tag -l | grep -v "^v")' diff --git a/.prow.yaml b/.prow.yaml index 90127133d5d..8b0f07f0394 100644 --- a/.prow.yaml +++ b/.prow.yaml @@ -7,7 +7,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - make - verify-boilerplate @@ -27,7 +27,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - make - verify-codegen @@ -44,7 +44,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - make - lint @@ -83,7 +83,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - make - test @@ -104,7 +104,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - ./hack/run-with-prow.sh - ./hack/run-with-prometheus.sh @@ -131,7 +131,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - ./hack/run-with-prow.sh - ./hack/run-with-prometheus.sh @@ -158,7 +158,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - ./hack/run-with-prow.sh - ./hack/run-with-prometheus.sh @@ -189,7 +189,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - ./hack/run-with-prow.sh - ./hack/run-with-prometheus.sh @@ -216,7 +216,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.25.9-1 + - image: ghcr.io/kcp-dev/infra/build:1.25.10-1 command: - ./hack/run-with-prow.sh - ./hack/run-with-prometheus.sh diff --git a/Dockerfile b/Dockerfile index d0eff5f3670..8db25ef4580 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # limitations under the License. # Build the binary -FROM --platform=${BUILDPLATFORM} docker.io/golang:1.25.9 AS builder +FROM --platform=${BUILDPLATFORM} docker.io/golang:1.25.10 AS builder WORKDIR /workspace # Install dependencies. diff --git a/go.mod b/go.mod index ffb82422a93..fcc7c9ab06c 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ module github.com/kcp-dev/kcp // The script hack/verify-go-versions.sh checks that all version // references across the codebase are consistent with the versions // maintained here. -// go-build-version 1.25.9 +// go-build-version 1.25.10 go 1.25.0 require ( diff --git a/staging/publishing/rules.yaml b/staging/publishing/rules.yaml index 2b38dc3f262..0ce4c5e21ac 100644 --- a/staging/publishing/rules.yaml +++ b/staging/publishing/rules.yaml @@ -185,6 +185,6 @@ rules: library: true recursive-delete-patterns: - '*/.gitattributes' -default-go-version: 1.25.9 +default-go-version: 1.25.10 skip-tags: false skip-non-semver-tags: true