diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-01-24 18:37:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 01:37:35 +0200 |
commit | d2ea21d0d8103986b2ce53c17b7b99b1ce6828b0 (patch) | |
tree | 802ea1a787b1f6ef08b18524d3818115a750f0eb /.drone.yml | |
parent | bc05ddc0ebd6fdc826ef2beec99304bac60ddd8a (diff) | |
download | gitea-d2ea21d0d8103986b2ce53c17b7b99b1ce6828b0.tar.gz gitea-d2ea21d0d8103986b2ce53c17b7b99b1ce6828b0.zip |
Use caddy's certmagic library for extensible/robust ACME handling (#14177)
* use certmagic for more extensible/robust ACME cert handling
* accept TOS based on config option
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index 9525c45b6f..cc7444df0a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -69,7 +69,7 @@ steps: - name: checks-backend pull: always - image: golang:1.14 + image: golang:1.15 commands: - make checks-backend depends_on: [lint-backend] @@ -82,7 +82,7 @@ steps: - name: build-backend-no-gcc pull: always - image: golang:1.13 # this step is kept as the lowest version of golang that we support + image: golang:1.14 # this step is kept as the lowest version of golang that we support environment: GO111MODULE: on GOPROXY: off |