diff options
author | Marten Seemann <[email protected]> | 2024-01-25 10:58:19 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-25 13:58:19 -0500 |
commit | 697cc593a17fcb39087161b058fc1dba8b767060 (patch) | |
tree | 7e83b299423272178716ccf631b9e7be3c580df4 /.github/workflows/ci.yml | |
parent | 2fe69a828f9fcacc0160a576839d4b67c5730031 (diff) | |
download | caddy-697cc593a17fcb39087161b058fc1dba8b767060.tar.gz caddy-697cc593a17fcb39087161b058fc1dba8b767060.zip |
chore: Update quic-go to v0.41.0, bump Go minimum to 1.21 (#6043)
Co-authored-by: Francis Lavoie <[email protected]>
Co-authored-by: Matt Holt <[email protected]>
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bca6b4d9..f0fb2520b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,18 +23,18 @@ jobs: - macos-latest - windows-latest go: - - '1.20' - '1.21' + - '1.22' include: # Set the minimum Go patch version for the given Go minor # Usable via ${{ matrix.GO_SEMVER }} - - go: '1.20' - GO_SEMVER: '~1.20.6' - - go: '1.21' GO_SEMVER: '~1.21.0' + - go: '1.22' + GO_SEMVER: '~1.22.0-rc.2' + # Set some variables per OS, usable via ${{ matrix.VAR }} # CADDY_BIN_PATH: the path to the compiled Caddy binary, for artifact publishing # SUCCESS: the typical value for $? per OS (Windows/pwsh returns 'True') |