diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-05-23 00:29:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-22 16:29:53 +0000 |
commit | 81ce271f783331682e07594a179444077b240c84 (patch) | |
tree | c11086b84651dae27f6708185c997213c2c3edee | |
parent | 3588edbb08f93aaa56defa82dffdbb202cd9aa4a (diff) | |
download | gitea-81ce271f783331682e07594a179444077b240c84.tar.gz gitea-81ce271f783331682e07594a179444077b240c84.zip |
Use Go 1.20 for next release (#24859)
-rw-r--r-- | docs/config.yaml | 4 | ||||
-rw-r--r-- | go.mod | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/config.yaml b/docs/config.yaml index 90a4c808f7..81adcaf452 100644 --- a/docs/config.yaml +++ b/docs/config.yaml @@ -18,8 +18,8 @@ params: description: Git with a cup of tea author: The Gitea Authors website: https://docs.gitea.io - version: 1.19.0 - minGoVersion: 1.19 + version: 1.19.0 # FIXME: this version was used as "latest stable release", but it always gets outdated and doesn't make sense + minGoVersion: 1.20 goVersion: 1.20 minNodeVersion: 16 search: nav @@ -1,6 +1,6 @@ module code.gitea.io/gitea -go 1.19 +go 1.20 require ( code.gitea.io/actions-proto-go v0.2.1 |