diff options
author | zeripath <art27@cantab.net> | 2021-08-03 19:32:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 14:32:01 -0400 |
commit | 35735bbef982fa2268dd90c7ca709f9e9ff00efc (patch) | |
tree | e74eee9e974a23b49fa59b5be79e830bf8374d6f /.drone.yml | |
parent | 80b7889fee833d4d80c5581dc182b4a499b4bad4 (diff) | |
download | gitea-35735bbef982fa2268dd90c7ca709f9e9ff00efc.tar.gz gitea-35735bbef982fa2268dd90c7ca709f9e9ff00efc.zip |
Upgrade to golang-jwt 3.2.2 (#16590)
* Upgrade to golang-jwt 3.2.2
Upgrade to the latest version of golang-jwt
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Forcibly replace the 3.2.1 version of golang-jwt/jwt and increase minimum Go version
Using go.mod we can forcibly replace the 3.2.1 version used by goth to 3.2.2.
Further given golang-jwt/jwts stated policy of only supporting supported go versions
we should just raise our minimal version of go to 1.16 for 1.16 as by time of release
1.15 will be out of support.
Signed-off-by: Andrew Thornton <art27@cantab.net>
* update minimal go required
Signed-off-by: Andrew Thornton <art27@cantab.net>
* update config.yaml
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index f4a6d31625..faef676083 100644 --- a/.drone.yml +++ b/.drone.yml @@ -84,7 +84,7 @@ steps: - name: build-backend-no-gcc pull: always - image: golang:1.14 # this step is kept as the lowest version of golang that we support + image: golang:1.16 # this step is kept as the lowest version of golang that we support environment: GO111MODULE: on GOPROXY: off |