chore: Build with Go 1.20, keep minimum at 1.18 for now (#5353)

This commit is contained in:
Francis Lavoie
2023-02-06 11:29:20 -05:00
committed by GitHub
parent 94b8d56096
commit e62b5fb586
9 changed files with 45 additions and 40 deletions

View File

@@ -11,13 +11,13 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
go: [ '1.19' ]
go: [ '1.20' ]
include:
# Set the minimum Go patch version for the given Go minor
# Usable via ${{ matrix.GO_SEMVER }}
- go: '1.19'
GO_SEMVER: '~1.19.0'
- go: '1.20'
GO_SEMVER: '~1.20.0'
runs-on: ${{ matrix.os }}
# https://github.com/sigstore/cosign/issues/1258#issuecomment-1002251233