Skip to content

Commit 444dc74

Browse files
committed
fix: update Go setup and golangci-lint action versions in CI workflow
1 parent aa4f575 commit 444dc74

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Set up Go
20-
uses: actions/setup-go@v4
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: ${{ matrix.go-version }}
2323

@@ -31,15 +31,10 @@ jobs:
3131
restore-keys: |
3232
${{ runner.os }}-go-${{ matrix.go-version }}-
3333
34-
- name: Install golangci-lint
35-
uses: golangci/golangci-lint-action@v4
36-
with:
37-
version: v1.60.0
38-
3934
- name: Run golangci-lint
40-
uses: golangci/golangci-lint-action@v4
35+
uses: golangci/golangci-lint-action@v6
4136
with:
42-
args: run ./...
37+
version: v1.63.4
4338

4439
- name: Run go vet
4540
run: go vet ./...

0 commit comments

Comments
 (0)