From 7f75aec407e8df28ca0a3a47d3913681e334a93b Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 13 Aug 2024 15:22:14 -0700 Subject: [PATCH] [1.1] Add Go 1.23, drop 1.21 As of commit 096e6f88f0f00e we are ready for Go 1.23. All that's left to do is: - Cirrus CI: switch from Go 1.21 to Go 1.22; - GHA CI: drop go 1.21, add 1.23 to test matrix; - Dockerfile: switch from Go 1.21.x to 1.22.x. Signed-off-by: Kir Kolyshkin --- .cirrus.yml | 2 +- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 16299b913d9..cecdac896a9 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -77,7 +77,7 @@ task: env: HOME: /root CIRRUS_WORKING_DIR: /home/runc - GO_VERSION: "1.21" + GO_VERSION: "1.22" BATS_VERSION: "v1.9.0" RPMS: gcc git iptables jq glibc-static libseccomp-devel make criu fuse-sshfs # yamllint disable rule:key-duplicates diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a3cf78bd302..2381340c0f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.17.x, 1.21.x, 1.22.x] + go-version: [1.17.x, 1.22.x, 1.23.x] rootless: ["rootless", ""] race: ["-race", ""] criu: [""] diff --git a/Dockerfile b/Dockerfile index 6337332f8db..c3d686674e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.21 +ARG GO_VERSION=1.22 ARG BATS_VERSION=v1.9.0 ARG LIBSECCOMP_VERSION=2.5.5