diff options
author | Kévin Dunglas <[email protected]> | 2024-08-23 19:01:28 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-23 11:01:28 -0600 |
commit | 2028da4e74cd41f0f7f94222c6599da1a371d4b8 (patch) | |
tree | 9d29ec3f057d913a5daba11f98b42d80f9da3ed5 /.github/workflows/release.yml | |
parent | 4ade967005929e98ae2265d9d7c89b33f1ca951b (diff) | |
download | caddy-2028da4e74cd41f0f7f94222c6599da1a371d4b8.tar.gz caddy-2028da4e74cd41f0f7f94222c6599da1a371d4b8.zip |
ci: build and test with Go 1.23 (#6526)
* chore: build and test with Go 1.23
* ci: bump golangci-lint to v1.60
* fix: make properly wrap errors
* ci: remove Go 1.21
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cb5d750dc..1eb59e9d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,13 +13,13 @@ jobs: os: - ubuntu-latest go: - - '1.22' + - '1.23' include: # Set the minimum Go patch version for the given Go minor # Usable via ${{ matrix.GO_SEMVER }} - - go: '1.22' - GO_SEMVER: '~1.22.3' + - go: '1.23' + GO_SEMVER: '~1.23.0' runs-on: ${{ matrix.os }} # https://github.com/sigstore/cosign/issues/1258#issuecomment-1002251233 |