From 8d4abc358e3116678136658e889b83e0cbd86a78 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Tue, 25 Feb 2025 17:20:18 +0100 Subject: [PATCH] build: Set go version in go.mod to 1.23.0 go 1.24 has been released so 1.22 is no longer supported. Having go versions out of sync in go.mod and tools/go.mod causes issues when building in github actions, so this change will also help with that. Signed-off-by: Christophe Fergeau --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 9dde6d7c..1623b80c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cfergeau/macadam -go 1.22.6 +go 1.23.0 toolchain go1.23.2