Skip to content

Commit dc50ed5

Browse files
committed
chore(ci): update Github actions workflow
1 parent 3d829d2 commit dc50ed5

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,16 @@ jobs:
1818
name: Linting
1919
runs-on: ubuntu-latest
2020
steps:
21+
- name: Install Go
22+
uses: actions/setup-go@v3
23+
with:
24+
go-version: 1.19
2125
- name: Checkout repository
2226
uses: actions/checkout@v2
2327
- name: Run linter
24-
uses: golangci/golangci-lint-action@v2
28+
uses: golangci/golangci-lint-action@v3
2529
with:
26-
version: v1.43.0
30+
version: v1.50.0
2731
args: -c .golangci.yaml
2832
only-new-issues: true
2933
test:
@@ -41,9 +45,10 @@ jobs:
4145
go:
4246
- "1.17.x"
4347
- "1.18.x"
48+
- "1.19.x"
4449
steps:
4550
- name: Install Go
46-
uses: actions/setup-go@v2
51+
uses: actions/setup-go@v3
4752
with:
4853
go-version: ${{ matrix.go }}
4954
- name: Checkout repository

0 commit comments

Comments
 (0)