chore(ci): upgrade golangci-lint to v2.9.0 and drop lint from release pipeline#242
Merged
fernando-villalba merged 1 commit intomainfrom Feb 17, 2026
Conversation
… pipeline CI was failing on main because golangci-lint-action@v8 auto-installed the latest version (v2.9.0) while the Makefile pinned v2.3.0. The newer golines formatter is stricter about line length, causing failures on pre-existing code that passed with the old version. - Bump GOLANGCI_LINT_VERSION from v2.3.0 to v2.9.0 in Makefile - Remove golangci-lint-action step from build-and-release.yaml - Auto-format 28 Go files with golines v2.9.0 Lint now runs exclusively on PRs via _reusable-build-changed.yaml using `make lint` with the Makefile-pinned version. The release pipeline (main/tags) keeps tests but skips lint since code already passed lint before merge. This eliminates version drift between local and CI linting.
🔬 Go Test Coverage ReportSummary
Status✅ PASS DetailShow New Coverage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CI was failing on main because golangci-lint-action@v8 auto-installed the latest version (v2.9.0) while the Makefile pinned v2.3.0. The newer golines formatter is stricter about line length, causing failures on pre-existing code that passed with the old version.
Lint now runs exclusively on PRs via _reusable-build-changed.yaml using
make lintwith the Makefile-pinned version. The release pipeline (main/tags) keeps tests but skips lint since code already passed lint before merge. This eliminates version drift between local and CI linting.