From 1a443d0df479553db1186c4feb954de0b268767f Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Mon, 11 Aug 2025 13:49:28 +0200 Subject: [PATCH] chore: require Go v1.24 It is not a breaking change for Forgejo because Forgejo v13 already depends on Go v1.24 and Forgejo runner v9 is not compatible with Forgejo versions before v13 from an API point of view. It is however compatible from a protocol point of view and this does not depend on the Go version being used. It would be a breaking change for third party software using the runner as a package but it is not designed or supported for that. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index c22ab410..cefb75e5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module code.forgejo.org/forgejo/runner/v9 -go 1.23.0 +go 1.24.0 toolchain go1.24.6