From 66bb63ea182391a02a81e73a146eebaeb4e0b85f Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Mon, 11 Aug 2025 12:49:51 +0000 Subject: [PATCH] chore: require Go v1.24 (#839) 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. - other - [PR](https://code.forgejo.org/forgejo/runner/pulls/839): chore: require Go v1.24 Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/839 Reviewed-by: Gusted Co-authored-by: Earl Warren Co-committed-by: Earl Warren --- 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