We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa1317 commit da2e854Copy full SHA for da2e854
.github/workflows/lint.yaml
@@ -17,11 +17,13 @@ jobs:
17
name: lint
18
runs-on: ubuntu-latest
19
steps:
20
- - uses: actions/checkout@v2
21
- - name: golangci-lint
22
- uses: golangci/golangci-lint-action@v2
+ - uses: actions/setup-go@v3
+ with:
+ go-version: 1.18
23
+ - uses: actions/checkout@v3
24
+ - name: Run golangci-lint
25
+ uses: golangci/golangci-lint-action@v3.2.0
26
with:
- version: v1.45.2
27
args:
28
-v
29
--config=.golangci.yml
0 commit comments