chore: update CI actions to latest versions#73
Open
jahkeup wants to merge 1 commit into
Open
Conversation
c15585d to
1a4b181
Compare
- actions/checkout v3 → v6 - actions/setup-go v3 → v6 - golangci/golangci-lint-action v3 → v9 Remove explicit cache: true since setup-go v5+ caches by default. Add errcheck as a non-blocking CI step: the main lint step passes --disable errcheck so it doesn't block merges, while a dedicated step runs --enable-only errcheck with continue-on-error to log findings as annotations. Local golangci-lint runs still report errcheck normally. Via: git.commit.amend (mcp-server-go-git/v0.1.0-8-gb11cc3f)
1a4b181 to
0dad5f1
Compare
dpakpak
approved these changes
May 22, 2026
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.
Issue #, if available:
n/a
Description of changes:
Update GitHub Actions workflow to latest available action versions:
actions/checkoutv3 → v6actions/setup-gov3 → v6golangci/golangci-lint-actionv3 → v9Removes the explicit
cache: trueoption fromsetup-gosince v5+ enables Go module caching by default.Runner labels (
ubuntu-latest,macos-latest) are unchanged — they already resolve to the latest available images (Ubuntu 24.04 and macOS 15).Errcheck handling: the main CI lint step passes
--disable errcheckso it doesn't block merges. A separate "errcheck (non-blocking)" step runs--enable-only errcheckwithcontinue-on-error: true— findings appear as annotations and in logs without failing the build. Localgolangci-lint runstill reports errcheck normally (no config file to suppress it).By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.