Skip to content

Commit feb09ed

Browse files
committed
[ci] Update to v3 of golangci lint action
This removes the implicit go installation. See golangci/golangci-lint-action#434
1 parent 1ff79e7 commit feb09ed

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,18 @@ jobs:
1212
with:
1313
# we depend on full git history for linters
1414
fetch-depth: 0
15+
- name: Setup Go
16+
uses: actions/setup-go@v3
17+
with:
18+
go-version: '1.17'
1519
- name: golangci-lint
16-
uses: golangci/golangci-lint-action@v2
20+
uses: golangci/golangci-lint-action@v3
1721
with:
1822
# Required: the version of golangci-lint is required and must be
1923
# specified without patch version: we always use the latest patch
2024
# version.
21-
version: v1.28
25+
version: v1.29
2226
args: --verbose --timeout=10m
23-
skip-go-installation: true
2427
test:
2528
strategy:
2629
matrix:

0 commit comments

Comments
 (0)