Skip to content

Commit 9a47646

Browse files
authored
Merge pull request #256 from mihaitodor/fix-lint-action
Fix golangci-lint action
2 parents 89f9e29 + 39f6bc3 commit 9a47646

File tree

10 files changed

+297
-295
lines changed

10 files changed

+297
-295
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ jobs:
77
name: lint
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/setup-go@v2
11-
- uses: actions/checkout@v2
10+
- uses: actions/setup-go@v3
11+
with:
12+
go-version: 1.18.x
13+
- uses: actions/checkout@v3
1214
- name: golangci-lint
13-
uses: golangci/golangci-lint-action@v2
15+
uses: golangci/golangci-lint-action@v3
1416
with:
15-
version: v1.45.2
17+
version: v1.48.0

0 commit comments

Comments
 (0)