-
Notifications
You must be signed in to change notification settings - Fork 99
fix golangci-lint workflow #4854
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThis pull request updates the project's configuration by refining linting tool versions and making formatting adjustments. In the GitHub Actions workflow ( Changes
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
💤 Files with no reviewable changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (9)
🔇 Additional comments (3)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
The workflow is failing because
golangci-lint-action
added config validation, and our config are still using outdated lints that have been dropped couple of years ago.This PR fixes the issue by removing the dropped configs, but also mitigates future similars issues by:
golangci-lint
version used by the action to latest version v1.64.5 to avoid always using the latest version which may be incompatible with our configsgolangci-lint-action
to current latest version v6.5.0 to avoid change in behaviour, such as config validationThis allows us to update whenever we are ready and not block our pipeline when latest versions are incompatible with our repo
Summary by CodeRabbit