We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f7d854 commit bdb3316Copy full SHA for bdb3316
.github/workflows/checks.yaml
@@ -33,6 +33,7 @@ jobs:
33
- name: Run golangci-lint
34
uses: golangci/golangci-lint-action@v6
35
with:
36
+ verify: false
37
version: latest
38
- name: Dependency Licenses Review
39
run: make check-dependency-licenses
internal/ghworkflow/workflow_checks.go
@@ -23,6 +23,8 @@ func checksWorkflow(cfg core.Configuration) {
23
Name: "Run golangci-lint",
24
Uses: core.GolangciLintAction,
25
With: map[string]any{
26
+ // disabled until https://github.com/golangci/golangci-lint/pull/5501 is resolved
27
+ "verify": false,
28
"version": "latest",
29
},
30
})
0 commit comments