ci: update to Go 1.22rc2 (#4267)

This commit is contained in:
Marten Seemann 2024-01-24 19:16:17 -08:00 committed by GitHub
parent 2a7a11f4c0
commit baeec0f41c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ "1.21.x", "1.22.0-rc.1" ]
go: [ "1.21.x", "1.22.0-rc.2" ]
runs-on: ${{ fromJSON(vars['CROSS_COMPILE_RUNNER_UBUNTU'] || '"ubuntu-latest"') }}
name: "Cross Compilation (Go ${{matrix.go}})"
steps:

View file

@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu" ]
go: [ "1.21.x", "1.22.0-rc.1" ]
go: [ "1.21.x", "1.22.0-rc.2" ]
include:
- os: "windows"
go: "1.21.x"

View file

@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ "1.21.x", "1.22.0-rc.1" ]
go: [ "1.21.x", "1.22.0-rc.2" ]
name: golangci-lint (Go ${{ matrix.go }})
steps:
- uses: actions/checkout@v4

View file

@ -7,7 +7,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu", "windows", "macos" ]
go: [ "1.21.x", "1.22.0-rc.1" ]
go: [ "1.21.x", "1.22.0-rc.2" ]
runs-on: ${{ fromJSON(vars[format('UNIT_RUNNER_{0}', matrix.os)] || format('"{0}-latest"', matrix.os)) }}
name: Unit tests (${{ matrix.os}}, Go ${{ matrix.go }})
steps: