From 99d054b93f410717218e71392135b97c0280e99c Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Thu, 12 Mar 2026 19:53:27 +0900 Subject: [PATCH] go.mod: bump minimum to Go 1.25 Signed-off-by: Aleksa Sarai --- .github/workflows/test.yml | 6 +----- go.mod | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dac927b98..1abd3df14 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-24.04, ubuntu-24.04-arm] - go-version: [1.24.x, 1.25.x, 1.26.x] + go-version: [1.25.x, 1.26.x] libpathrs: ["libpathrs", ""] rootless: ["rootless", ""] race: ["-race", ""] @@ -34,15 +34,11 @@ jobs: exclude: # Disable most of criu-dev jobs, as they are expensive # (need to compile criu) and don't add much value/coverage. - - criu: criu-dev - go-version: 1.24.x - criu: criu-dev go-version: 1.25.x - criu: criu-dev rootless: rootless # Do race detection only with latest stable Go version. - - race: -race - go-version: 1.24.x - race: -race go-version: 1.25.x diff --git a/go.mod b/go.mod index 0d221283b..d719bacd4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/opencontainers/runc -go 1.24.0 +go 1.25.0 require ( github.com/checkpoint-restore/go-criu/v7 v7.2.0