Skip to content

Commit 2dbee32

Browse files
committed
workflow: update lint
1 parent cb68ebc commit 2dbee32

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,20 @@ on:
77
permissions:
88
contents: read
99
jobs:
10-
golangci:
10+
lint:
1111
name: lint
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/setup-go@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-go@v4
1516
with:
16-
go-version: 1.18
17-
- uses: actions/checkout@v3
18-
- name: golangci-lint
17+
go-version: 'stable'
18+
cache: false
19+
- name: Lint
1920
uses: golangci/golangci-lint-action@v3
2021
with:
22+
skip-cache: true
23+
skip-pkg-cache: true
24+
skip-build-cache: true
2125
version: latest
22-
args: --timeout=10m --issues-exit-code=0 ./...
26+
args: --timeout=30m ./...

0 commit comments

Comments
 (0)