Skip to content

Commit bdb3316

Browse files
Don't verify schema until golangci/golangci-lint#5501 is resolved
1 parent 7f7d854 commit bdb3316

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/checks.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- name: Run golangci-lint
3434
uses: golangci/golangci-lint-action@v6
3535
with:
36+
verify: false
3637
version: latest
3738
- name: Dependency Licenses Review
3839
run: make check-dependency-licenses

internal/ghworkflow/workflow_checks.go

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ func checksWorkflow(cfg core.Configuration) {
2323
Name: "Run golangci-lint",
2424
Uses: core.GolangciLintAction,
2525
With: map[string]any{
26+
// disabled until https://github.com/golangci/golangci-lint/pull/5501 is resolved
27+
"verify": false,
2628
"version": "latest",
2729
},
2830
})

0 commit comments

Comments
 (0)