diff options
author | Mohammed Al Sahaf <[email protected]> | 2024-05-15 22:28:34 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2024-05-15 19:28:34 +0000 |
commit | 44860482d2e38f10dc13b42e6ab277919ab4b5f1 (patch) | |
tree | 1d59b082d32c5d93c2b24531e40f52341171dbad /go.mod | |
parent | 4c90f1427f22a85f767dbeabb3bedcc8f9355c84 (diff) | |
download | caddy-44860482d2e38f10dc13b42e6ab277919ab4b5f1.tar.gz caddy-44860482d2e38f10dc13b42e6ab277919ab4b5f1.zip |
chore: downgrade minimum Go version in go.mod (#6318)
* chore: downgrade minimum Go version in go.mod
* Upgrade certmagic and zerossl
---------
Co-authored-by: Matthew Holt <[email protected]>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,14 +1,16 @@ module github.com/caddyserver/caddy/v2 -go 1.22.3 +go 1.21.0 + +toolchain go1.22.2 require ( github.com/BurntSushi/toml v1.3.2 github.com/Masterminds/sprig/v3 v3.2.3 github.com/alecthomas/chroma/v2 v2.13.0 github.com/aryann/difflib v0.0.0-20210328193216-ff5ff6dc229b - github.com/caddyserver/certmagic v0.21.0 - github.com/caddyserver/zerossl v0.1.2 + github.com/caddyserver/certmagic v0.21.1 + github.com/caddyserver/zerossl v0.1.3 github.com/dustin/go-humanize v1.0.1 github.com/go-chi/chi/v5 v5.0.12 github.com/google/cel-go v0.20.0 |