From 0ab647302b997e91b4e7e4c9f06e30d5df027abc Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Thu, 12 Feb 2026 11:14:33 +0000 Subject: [PATCH] versions: Bump go to 1.25.7 Now that go 1.26 is out, 1.24 is not supported, so bump to 1.25 as per our policy. Signed-off-by: stevenhorsman --- src/runtime/go.mod | 2 +- src/tools/csi-kata-directvolume/go.mod | 2 +- src/tools/log-parser/go.mod | 2 +- tests/go.mod | 2 +- tests/metrics/cmd/checkmetrics/go.mod | 2 +- tools/testing/kata-webhook/go.mod | 2 +- versions.yaml | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/runtime/go.mod b/src/runtime/go.mod index 1323730ea4..e33d197ced 100644 --- a/src/runtime/go.mod +++ b/src/runtime/go.mod @@ -1,7 +1,7 @@ module github.com/kata-containers/kata-containers/src/runtime // Keep in sync with version in versions.yaml -go 1.24.13 +go 1.25.7 // WARNING: Do NOT use `replace` directives as those break dependabot: // https://github.com/kata-containers/kata-containers/issues/11020 diff --git a/src/tools/csi-kata-directvolume/go.mod b/src/tools/csi-kata-directvolume/go.mod index e96f1bb032..0068e48301 100644 --- a/src/tools/csi-kata-directvolume/go.mod +++ b/src/tools/csi-kata-directvolume/go.mod @@ -1,7 +1,7 @@ module kata-containers/csi-kata-directvolume // Keep in sync with version in versions.yaml -go 1.24.13 +go 1.25.7 // WARNING: Do NOT use `replace` directives as those break dependabot: // https://github.com/kata-containers/kata-containers/issues/11020 diff --git a/src/tools/log-parser/go.mod b/src/tools/log-parser/go.mod index f4a46d47ab..4cc0d39646 100644 --- a/src/tools/log-parser/go.mod +++ b/src/tools/log-parser/go.mod @@ -1,7 +1,7 @@ module github.com/kata-containers/kata-containers/src/tools/log-parser // Keep in sync with version in versions.yaml -go 1.24.13 +go 1.25.7 require ( github.com/BurntSushi/toml v1.1.0 diff --git a/tests/go.mod b/tests/go.mod index 5f7cd3b5d5..e4ca562f59 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -1,7 +1,7 @@ module github.com/kata-containers/tests // Keep in sync with version in versions.yaml -go 1.24.13 +go 1.25.7 // WARNING: Do NOT use `replace` directives as those break dependabot: // https://github.com/kata-containers/kata-containers/issues/11020 diff --git a/tests/metrics/cmd/checkmetrics/go.mod b/tests/metrics/cmd/checkmetrics/go.mod index 7adaff3eeb..36f69bb7cf 100644 --- a/tests/metrics/cmd/checkmetrics/go.mod +++ b/tests/metrics/cmd/checkmetrics/go.mod @@ -1,7 +1,7 @@ module example.com/m // Keep in sync with version in versions.yaml -go 1.24.13 +go 1.25.7 require ( github.com/BurntSushi/toml v1.3.2 diff --git a/tools/testing/kata-webhook/go.mod b/tools/testing/kata-webhook/go.mod index eaae4fd9af..b54e0c5a5f 100644 --- a/tools/testing/kata-webhook/go.mod +++ b/tools/testing/kata-webhook/go.mod @@ -1,7 +1,7 @@ module module-path // Keep in sync with version in versions.yaml -go 1.24.13 +go 1.25.7 require ( github.com/sirupsen/logrus v1.9.3 diff --git a/versions.yaml b/versions.yaml index 27b7e10d6c..d1e34613fd 100644 --- a/versions.yaml +++ b/versions.yaml @@ -465,12 +465,12 @@ languages: description: "Google's 'go' language" notes: "'version' is the default minimum version used by this project." # When updating this, also update in go.mod files. - version: "1.24.13" + version: "1.25.7" meta: description: | 'newest-version' is the latest version known to work when building Kata - newest-version: "1.24.13" + newest-version: "1.25.7" rust: description: "Rust language"