From 87356269d812613f6a79c10fa210338bca54a7c1 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Wed, 3 Sep 2025 15:02:12 +0100 Subject: [PATCH] versions: Tidy up go.mod versions Update go 1.23 references to go 1.24.6 to match versions.yaml Signed-off-by: stevenhorsman --- src/tools/log-parser/go.mod | 2 +- tests/go.mod | 2 +- tests/metrics/cmd/checkmetrics/go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/log-parser/go.mod b/src/tools/log-parser/go.mod index 20c998e7ff..b68a425210 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.23 +go 1.24.6 require ( github.com/BurntSushi/toml v1.1.0 diff --git a/tests/go.mod b/tests/go.mod index ec0eea2c93..dcb99f3aa9 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.23 +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/tests/metrics/cmd/checkmetrics/go.mod b/tests/metrics/cmd/checkmetrics/go.mod index f09c9a9590..ff56007084 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.23 +go 1.24.6 require ( github.com/BurntSushi/toml v1.3.2