Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
pull_request:

env:
GO_VERSION: 1.23.x
GO_VERSION: 1.24.x
GOTOOLCHAIN: local

jobs:
go:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- 'release/**'
pull_request:

env:
GOTOOLCHAIN: local

jobs:
project:
name: checks
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
tags:
- 'v*'
- 'test-action-release-*'

env:
GOTOOLCHAIN: local

jobs:
release:
runs-on: ubuntu-24.04
Expand All @@ -13,7 +17,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version: 1.23.x
go-version: 1.24.x
- name: "Compile binaries"
run: make artifacts
- name: "SHA256SUMS"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:
- '**.md'

env:
GO_VERSION: 1.23.x
GO_VERSION: 1.24.x
GOTOOLCHAIN: local
SHORT_TIMEOUT: 5
LONG_TIMEOUT: 60

Expand Down Expand Up @@ -312,7 +313,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ["1.22.x", "1.23.x"]
go-version: ["1.23.x", "1.24.x"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ARG TINI_VERSION=v0.19.0
ARG BUILDG_VERSION=v0.4.1

# Test deps
ARG GO_VERSION=1.23
ARG GO_VERSION=1.24
ARG UBUNTU_VERSION=24.04
ARG CONTAINERIZED_SYSTEMD_VERSION=v0.1.1
ARG GOTESTSUM_VERSION=v1.12.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/containerd/nerdctl/v2

go 1.22.7
go 1.23

require (
github.com/Masterminds/semver/v3 v3.3.1
Expand Down
2 changes: 1 addition & 1 deletion hack/build-integration-kubernetes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ readonly root
# shellcheck source=/dev/null
. "$root/scripts/lib.sh"

GO_VERSION=1.23
GO_VERSION=1.24
KIND_VERSION=v0.24.0
CNI_PLUGINS_VERSION=v1.5.1

Expand Down
2 changes: 1 addition & 1 deletion pkg/testutil/test/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/containerd/nerdctl/v2/pkg/testutil/test

go 1.22.7
go 1.23

require (
golang.org/x/sync v0.11.0
Expand Down
Loading