From 7bd2ce71098625d3c602bc7d60443e65d5ddf30f Mon Sep 17 00:00:00 2001 From: Mingzhu Yan <69898423+trdthg@users.noreply.github.com> Date: Tue, 29 Apr 2025 20:24:53 +0800 Subject: [PATCH] fix go version (#34299) go cmd will download and cache a copy of the Go toolchain, go1.24 is not a valid version since https://github.com/golang/go/issues/57631. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 892f03dc1c..3f54133a85 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module code.gitea.io/gitea -go 1.24 +go 1.24.2 // rfc5280 said: "The serial number is an integer assigned by the CA to each certificate." // But some CAs use negative serial number, just relax the check. related: