From b8333eacf2ce98f83c21b9958d5c2f3171e4233c Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Mon, 22 Sep 2025 13:52:10 +0200 Subject: [PATCH] chore(go): At this time, stay with 1.24 for development Even if it works on CI, Go 1.24 is actually easier to manage in different Linux distributions. Maybe we will change the requiments: - if I decide that Fedora 43 (next release) is the "official distribution to use for development) - if I decide to ask developpers to use Homebrew to install Go - others reasons As I decided, at this time, to use RPM version of golang, the 1.24 version is probably the best choice for the moment. --- go.mod | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 74bf7b1..70472cf 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module katenary.io -go 1.25 +go 1.24.0 + +toolchain go1.24.7 require ( github.com/compose-spec/compose-go v1.20.2