diff options
author | silverwind <me@silverwind.io> | 2025-04-09 10:57:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-09 10:57:54 +0200 |
commit | 3eda79647be6147044464c1bc5b9a636a0237a1a (patch) | |
tree | 92d1840b22db79b76de4dae268c920c30f12f442 | |
parent | 97171be1b4acb262c0ae8eadeb0c6b56e4463324 (diff) | |
download | gitea-3eda79647be6147044464c1bc5b9a636a0237a1a.tar.gz gitea-3eda79647be6147044464c1bc5b9a636a0237a1a.zip |
Bump go version in go.mod (#34160)
Fixes: https://pkg.go.dev/vuln/GO-2025-3563
Because of a bug in go, we can not remove the minor version in go.mod
without `make tidy` introducing a potentially harmful `toolchain`
directive, so just bump the go version here. From what I gather, this
will be fixed in go 1.25.
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ module code.gitea.io/gitea -go 1.23.6 +go 1.23.8 // 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: |