.github: set latest Go versions

This commit is contained in:
Kevin Burke
2023-10-21 21:24:32 -07:00
parent 974a52c2c0
commit 1d09c0b505
+4 -4
View File
@@ -7,8 +7,8 @@ jobs:
- name: Install Go
uses: WillAbides/setup-go-faster@main
with:
go-version: 1.18.x
- uses: actions/checkout@v3
go-version: 1.21.x
- uses: actions/checkout@v4
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, 1.19.x]
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: WillAbides/setup-go-faster@main
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: './src/github.com/kevinburke/ssh_config'
- run: |