diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-09-18 03:35:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-17 19:35:59 +0000 |
commit | 8cdf4e29c4646cd3c35453e09a153406650c4fbc (patch) | |
tree | c96ef74c69add03309d61ff75c21bb3c9292063c /go.mod | |
parent | f38e1014483b84f4541ffb354cd5dfdd7e000e2c (diff) | |
download | gitea-8cdf4e29c4646cd3c35453e09a153406650c4fbc.tar.gz gitea-8cdf4e29c4646cd3c35453e09a153406650c4fbc.zip |
Fix CI (#32062)
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2,6 +2,11 @@ module code.gitea.io/gitea go 1.23 +// 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: +// Default TLS cert uses negative serial number #895 https://github.com/microsoft/mssql-docker/issues/895 +godebug x509negativeserial=1 + require ( code.gitea.io/actions-proto-go v0.4.0 code.gitea.io/gitea-vet v0.2.3 |