Pin go to 1.17

This commit is contained in:
MatthewHink
2022-04-06 15:24:42 -04:00
parent d10eca1d89
commit 63768daa0c

View File

@@ -10,8 +10,17 @@ jobs:
lint: lint:
name: Lint name: Lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix: # Pin go version to the one(s) below.
go ['1.17']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name Setup go ${{ matrix.go }}
uses: actions/setup.go@v2
with:
go-version: ${{ matrix.go }}
- name: Lint - name: Lint
uses: golangci/golangci-lint-action@v2 uses: golangci/golangci-lint-action@v2
with: with: