Skip to content

Commit ace84bf

Browse files
committed
[release-v2.12] update go version to 1.25
1 parent 8f3ea96 commit ace84bf

9 files changed

Lines changed: 9 additions & 11 deletions

File tree

.github/workflows/apidiff.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
fetch-depth: 0
1313
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
1414
with:
15-
go-version: 1.24.x
15+
go-version: 1.25.x
1616
- name: Generate API diff
1717
run: make apidiff

.github/workflows/e2e-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Install Go
4949
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
5050
with:
51-
go-version: 1.24.x
51+
go-version: 1.25.x
5252
- uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0
5353
with:
5454
version: v0.23.0

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install Go
1717
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
1818
with:
19-
go-version: 1.24.x
19+
go-version: 1.25.x
2020
- name: Analysis
2121
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6
2222
with:

.github/workflows/unit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install Go
1414
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
1515
with:
16-
go-version: 1.24.x
16+
go-version: 1.25.x
1717
- name: Run tests
1818
run: |
1919
make test

.github/workflows/verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install Go
1414
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
1515
with:
16-
go-version: 1.24.x
16+
go-version: 1.25.x
1717
- name: Run make verify
1818
run: |
1919
make verify

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
run:
22
timeout: 5m
3-
go: "1.24"
3+
go: "1.25"
44
tests: false
55
allow-parallel-runners: true
66

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/rancher/gke-operator
22

3-
go 1.24.0
4-
5-
toolchain go1.24.12
3+
go 1.25.11
64

75
replace (
86
k8s.io/client-go => k8s.io/client-go v0.33.1

package/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM registry.suse.com/bci/bci-base:15.7 AS base
55
RUN sed -i 's/^CREATE_MAIL_SPOOL=yes/CREATE_MAIL_SPOOL=no/' /etc/default/useradd
66
RUN useradd --uid 1007 gke-operator
77

8-
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/golang:1.24 AS builder
8+
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/golang:1.25 AS builder
99

1010
WORKDIR /app
1111
COPY go.mod go.sum ./

test/e2e/Dockerfile.e2e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.suse.com/bci/golang:1.24 AS build
1+
FROM registry.suse.com/bci/golang:1.25 AS build
22
RUN zypper -n install -l openssl-devel
33
WORKDIR /src
44
COPY go.mod go.sum /src/

0 commit comments

Comments
 (0)