diff options
author | WeidiDeng <[email protected]> | 2024-02-07 15:13:58 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-07 02:13:58 -0500 |
commit | bc1e63198dcc7ce84802e7c6ccff747ebc3f931f (patch) | |
tree | 940dde03d42d1c5239c66ee987b5a3941e4a9e61 /.github | |
parent | feb07a7b59a3ed6f518e5ce62f29d4816a51c5e7 (diff) | |
download | caddy-bc1e63198dcc7ce84802e7c6ccff747ebc3f931f.tar.gz caddy-bc1e63198dcc7ce84802e7c6ccff747ebc3f931f.zip |
bump to golang 1.22 (#6083)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/cross-build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0fb2520b..cb58e55a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: GO_SEMVER: '~1.21.0' - go: '1.22' - GO_SEMVER: '~1.22.0-rc.2' + GO_SEMVER: '~1.22.0' # Set some variables per OS, usable via ${{ matrix.VAR }} # CADDY_BIN_PATH: the path to the compiled Caddy binary, for artifact publishing diff --git a/.github/workflows/cross-build.yml b/.github/workflows/cross-build.yml index e35045395..c5b36d88a 100644 --- a/.github/workflows/cross-build.yml +++ b/.github/workflows/cross-build.yml @@ -35,7 +35,7 @@ jobs: # Set the minimum Go patch version for the given Go minor # Usable via ${{ matrix.GO_SEMVER }} - go: '1.22' - GO_SEMVER: '~1.22.0-rc.2' + GO_SEMVER: '~1.22.0' runs-on: ubuntu-latest continue-on-error: true diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d2762a621..a3b3108b3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '~1.22.0-rc.2' + go-version: '~1.22.0' check-latest: true - name: golangci-lint @@ -54,5 +54,5 @@ jobs: - name: govulncheck uses: golang/govulncheck-action@v1 with: - go-version-input: '~1.22.0-rc.2' + go-version-input: '~1.22.0' check-latest: true |