Skip to content

Commit 90971d3

Browse files
authored
Merge pull request containerd#3925 from AkihiroSuda/go1.24
update Go (1.24)
2 parents 7f7204a + 11f6fe2 commit 90971d3

File tree

8 files changed

+17
-8
lines changed

8 files changed

+17
-8
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88
pull_request:
99

1010
env:
11-
GO_VERSION: 1.23.x
11+
GO_VERSION: 1.24.x
12+
GOTOOLCHAIN: local
1213

1314
jobs:
1415
go:

.github/workflows/project.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- 'release/**'
88
pull_request:
99

10+
env:
11+
GOTOOLCHAIN: local
12+
1013
jobs:
1114
project:
1215
name: checks

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
tags:
66
- 'v*'
77
- 'test-action-release-*'
8+
9+
env:
10+
GOTOOLCHAIN: local
11+
812
jobs:
913
release:
1014
runs-on: ubuntu-24.04
@@ -13,7 +17,7 @@ jobs:
1317
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1418
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1519
with:
16-
go-version: 1.23.x
20+
go-version: 1.24.x
1721
- name: "Compile binaries"
1822
run: make artifacts
1923
- name: "SHA256SUMS"

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ on:
1010
- '**.md'
1111

1212
env:
13-
GO_VERSION: 1.23.x
13+
GO_VERSION: 1.24.x
14+
GOTOOLCHAIN: local
1415
SHORT_TIMEOUT: 5
1516
LONG_TIMEOUT: 60
1617

@@ -312,7 +313,7 @@ jobs:
312313
strategy:
313314
fail-fast: false
314315
matrix:
315-
go-version: ["1.22.x", "1.23.x"]
316+
go-version: ["1.23.x", "1.24.x"]
316317
steps:
317318
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
318319
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ARG TINI_VERSION=v0.19.0
4242
ARG BUILDG_VERSION=v0.4.1
4343

4444
# Test deps
45-
ARG GO_VERSION=1.23
45+
ARG GO_VERSION=1.24
4646
ARG UBUNTU_VERSION=24.04
4747
ARG CONTAINERIZED_SYSTEMD_VERSION=v0.1.1
4848
ARG GOTESTSUM_VERSION=v1.12.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/containerd/nerdctl/v2
22

3-
go 1.22.7
3+
go 1.23
44

55
require (
66
github.com/Masterminds/semver/v3 v3.3.1

hack/build-integration-kubernetes.sh

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

24-
GO_VERSION=1.23
24+
GO_VERSION=1.24
2525
KIND_VERSION=v0.24.0
2626
CNI_PLUGINS_VERSION=v1.5.1
2727

pkg/testutil/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/containerd/nerdctl/v2/pkg/testutil/test
22

3-
go 1.22.7
3+
go 1.23
44

55
require (
66
golang.org/x/sync v0.11.0

0 commit comments

Comments
 (0)