Skip to content

Commit e7c00a7

Browse files
committed
update testing to go 1.20
Signed-off-by: R.I.Pienaar <[email protected]>
1 parent ae4bb46 commit e7c00a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
go: [ 1.18, 1.19 ]
8+
go: [ "1.19", "1.20" ]
99

1010
env:
1111
GOPATH: /home/runner/work/terraform-provider-jetstream
1212

1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v1
16+
uses: actions/checkout@v3
1717

1818
- name: Setup Go
19-
uses: actions/setup-go@v1
19+
uses: actions/setup-go@v4
2020
with:
2121
go-version: ${{matrix.go}}
2222

2323
- name: Lint
2424
shell: bash
2525
run: |
26-
go install honnef.co/go/tools/cmd/staticcheck@2022.1
26+
go install honnef.co/go/tools/cmd/staticcheck@latest
2727
go install github.com/client9/misspell/cmd/misspell@latest
2828
2929
PATH=$PATH:$GOPATH/bin

0 commit comments

Comments
 (0)