From 381da9e603809d22d0fbd9f5911c463ee4e8d73d Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Mon, 21 Jul 2025 15:31:15 +0100 Subject: [PATCH] versions: Bump golang to 1.24.6 golang 1.25 has been released, so 1.23 is EoL, so we should update to ensure we don't end up with security issues Signed-off-by: stevenhorsman --- src/runtime/go.mod | 2 +- src/tools/csi-kata-directvolume/go.mod | 2 +- tools/testing/kata-webhook/go.mod | 2 +- versions.yaml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/runtime/go.mod b/src/runtime/go.mod index 0f3b28150c..681ca92687 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.23.12 +go 1.24.6 // 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 4385fb0c56..bca460ba60 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.23.12 +go 1.24.6 // WARNING: Do NOT use `replace` directives as those break dependabot: // https://github.com/kata-containers/kata-containers/issues/11020 diff --git a/tools/testing/kata-webhook/go.mod b/tools/testing/kata-webhook/go.mod index 84061f1a3a..09723965f7 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.23.12 +go 1.24.6 require ( github.com/sirupsen/logrus v1.9.3 diff --git a/versions.yaml b/versions.yaml index 32f9efb311..6e6465f3da 100644 --- a/versions.yaml +++ b/versions.yaml @@ -416,12 +416,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.23.12" + version: "1.24.6" meta: description: | 'newest-version' is the latest version known to work when building Kata - newest-version: "1.23.12" + newest-version: "1.24.6" rust: description: "Rust language"