chore: update Go version in CI (#131)

* chore: update Go version in CI

* update linter Action version
This commit is contained in:
Mohammed Al Sahaf 2023-02-07 11:16:42 +00:00 committed by GitHub
parent 661655cf05
commit 2bdd694700
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go: [ '1.17', '1.18' ]
go: [ '1.19', '1.20' ]
# Set some variables per OS, usable via ${{ matrix.VAR }}
# XCADDY_BIN_PATH: the path to the compiled xcaddy binary, for artifact publishing

View file

@ -17,11 +17,11 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: '~1.20'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.44
version: 'latest'
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true

View file

@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
go: [ '1.18' ]
go: [ '1.20' ]
runs-on: ${{ matrix.os }}
steps: