diff options
author | silverwind <me@silverwind.io> | 2022-03-16 03:50:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 22:50:26 -0400 |
commit | fe9626af296f7c7893af8cff88bc4195724bea07 (patch) | |
tree | 7a53ba47454d62c52128da1cf9f2ed723af97bbd /docs/config.yaml | |
parent | 6ab4a96855e472f3a8f86b2e7f66a9cc714fa447 (diff) | |
download | gitea-fe9626af296f7c7893af8cff88bc4195724bea07.tar.gz gitea-fe9626af296f7c7893af8cff88bc4195724bea07.zip |
Use `go run` for tool dependencies, require go 1.17 (#18874)
This ensures the tools only run in the versions we've tested and it also
does not polute PATH with those tools so they are truly isolated. This
syntax of `go run` requires go 1.17, so the minimum version is set
accordingly.
Fixes: https://github.com/go-gitea/gitea/issues/18867
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'docs/config.yaml')
-rw-r--r-- | docs/config.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/config.yaml b/docs/config.yaml index f2b98ba554..333870028c 100644 --- a/docs/config.yaml +++ b/docs/config.yaml @@ -19,7 +19,7 @@ params: author: The Gitea Authors website: https://docs.gitea.io version: 1.16.4 - minGoVersion: 1.16 + minGoVersion: 1.17 goVersion: 1.17 minNodeVersion: 12.17 |