Skip to content

Commit 3afdb13

Browse files
committed
update Go (1.25)
Signed-off-by: Akihiro Suda <[email protected]>
1 parent 1f8a175 commit 3afdb13

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: "Install go"
3131
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
3232
with:
33-
go-version: "1.24"
33+
go-version: "1.25"
3434
check-latest: true
3535
- name: "Compile binaries"
3636
env:

.github/workflows/workflow-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
canary: true
3636
with:
3737
timeout: 5
38-
go-version: "1.24"
38+
go-version: "1.25"
3939
runner: ubuntu-24.04
4040
# Note: in GitHub yaml world, if `matrix.canary` is undefined, and is passed to `inputs.canary`, the job
4141
# will not run. However, if you test it, it will coerce to `false`, hence:
@@ -48,7 +48,7 @@ jobs:
4848
uses: ./.github/workflows/job-lint-project.yml
4949
with:
5050
timeout: 5
51-
go-version: "1.24"
51+
go-version: "1.25"
5252
runner: ubuntu-24.04
5353

5454
# Lint for shell and yaml files
@@ -68,10 +68,10 @@ jobs:
6868
matrix:
6969
include:
7070
# Build for both old and stable go
71-
- go-version: "1.23"
7271
- go-version: "1.24"
72+
- go-version: "1.25"
7373
# Additionally build for canary
74-
- go-version: "1.24"
74+
- go-version: "1.25"
7575
canary: true
7676
with:
7777
timeout: 10

.github/workflows/workflow-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
canary: ${{ matrix.canary && true || false }}
3131
# Windows routinely go over 5 minutes
3232
timeout: 10
33-
go-version: 1.24
33+
go-version: 1.25
3434
windows-cni-version: v0.3.1
3535
linux-cni-version: v1.7.1
3636
linux-cni-sha: 1a28a0506bfe5bcdc981caf1a49eeab7e72da8321f1119b7be85f22621013098
@@ -138,7 +138,7 @@ jobs:
138138
runner: ${{ matrix.runner }}
139139
binary: ${{ matrix.binary != '' && matrix.binary || 'nerdctl' }}
140140
canary: ${{ matrix.canary && true || false }}
141-
go-version: 1.24
141+
go-version: 1.25
142142
windows-cni-version: v0.3.1
143143
docker-version: 5:28.0.4-1~ubuntu.24.04~noble
144144
containerd-version: 2.1.3

.github/workflows/workflow-tigron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
paths: 'mod/tigron/**'
1010

1111
env:
12-
GO_VERSION: "1.24"
12+
GO_VERSION: "1.25"
1313
GOTOOLCHAIN: local
1414

1515
jobs:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ARG GOMODJAIL_VERSION=v0.1.3@cea529ddd971b677c67d8af7e936fbc62b35b98c
4444

4545
# Test deps
4646
# Currently, the Docker Official Images and the test deps are not pinned by the hash
47-
ARG GO_VERSION=1.24
47+
ARG GO_VERSION=1.25
4848
ARG UBUNTU_VERSION=24.04
4949
ARG CONTAINERIZED_SYSTEMD_VERSION=v0.1.1
5050
ARG GOTESTSUM_VERSION=v1.12.3

hack/provisioning/kube/kind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ readonly root
2020
# shellcheck source=/dev/null
2121
. "$root/../../scripts/lib.sh"
2222

23-
GO_VERSION=1.24
23+
GO_VERSION=1.25
2424
KIND_VERSION=v0.27.0
2525
CNI_PLUGINS_VERSION=v1.7.1
2626
# shellcheck disable=SC2034

pkg/testutil/images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fluentd:
3232

3333
golang:
3434
ref: "golang"
35-
tag: "1.23.8-bookworm"
35+
tag: "1.25.0-trixie"
3636

3737
kubo:
3838
ref: "ghcr.io/stargz-containers/ipfs/kubo"

0 commit comments

Comments
 (0)