From 692817afb24acfe5a983bfe813937b18417c1e27 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 16 Mar 2026 14:13:13 -0700 Subject: [PATCH] ci: add go 1.26 Same as commit b9e3eec in release-1.4 branch. Signed-off-by: Kir Kolyshkin --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 306778d3256..1ef27846aee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-24.04, ubuntu-24.04-arm] - go-version: [1.23.x, 1.25.x] + go-version: [1.23.x, 1.25.x, 1.26.x] rootless: ["rootless", ""] race: ["-race", ""] criu: ["", "criu-dev"] @@ -34,11 +34,15 @@ jobs: # (need to compile criu) and don't add much value/coverage. - criu: criu-dev go-version: 1.23.x + - criu: criu-dev + go-version: 1.25.x - criu: criu-dev rootless: rootless - # Do race detection only on latest Go. + # Do race detection only with latest stable Go version. - race: -race go-version: 1.23.x + - race: -race + go-version: 1.25.x runs-on: ${{ matrix.os }}