Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/prpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
find . -type f -name '*.go' -exec sed -i 's/Code generated by .* DO NOT EDIT/FOO/g' {} \;
# on macos: find . -type f -name '*.go' -exec sed -i '' -E 's/Code generated by .* DO NOT EDIT/FOO/g' {} \;
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Incompatible golangci-lint version for action v9

High Severity

The golangci-lint-action is being bumped from v3 to v9, but the version: v1.54 parameter specifies an incompatible golangci-lint version. According to the release notes, golangci-lint-action v8.0.0+ requires golangci-lint version >= v2.1.0. Using v1.54 with the action v9 will cause the CI workflow to fail due to this version incompatibility.

Fix in Cursor Fix in Web

with:
version: v1.54
args: -v --timeout=5m
Expand Down
Loading