.github: use Go 1.19

This commit is contained in:
Kevin Burke
2022-11-25 07:46:23 -08:00
parent 3c7724c1bb
commit 974a52c2c0
+3 -3
View File
@@ -8,7 +8,7 @@ jobs:
uses: WillAbides/setup-go-faster@main
with:
go-version: 1.18.x
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: './src/github.com/kevinburke/ssh_config'
# staticcheck needs this for GOPATH
@@ -23,14 +23,14 @@ jobs:
test:
strategy:
matrix:
go-version: [1.17.x, 1.18.x]
go-version: [1.17.x, 1.18.x, 1.19.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: WillAbides/setup-go-faster@main
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: './src/github.com/kevinburke/ssh_config'
- run: |