chore: bump GitHub Actions to Node 24-compatible majors#430
Open
jbouder wants to merge 1 commit into
Open
Conversation
GitHub defaults Actions runners to Node 24 on 2026-06-16 and removes Node 20 in Fall 2026. Bump every action under .github/workflows/ to its latest stable major so they run on the Node 24 runtime and stop emitting Node 20 deprecation annotations. SHA pins are kept; only the pinned SHA and version comment change. - actions/checkout v6.0.2 -> v7.0.0 - actions/setup-go v6.2.0 -> v6.5.0 - actions/setup-node v6.2.0 -> v6.4.0 - actions/download-artifact v4.3.0 -> v8.0.1 - actions/upload-artifact v4.6.2/v6.0.0 -> v7.0.1 - actions/cache v4.2.4 -> v6.1.0 - codecov/codecov-action v5.5.2 -> v7.0.0 - goreleaser/goreleaser-action v6.4.0 -> v7.2.2 - superfly/setup-flyctl 1.5 -> 1.6 (node20 -> node24) - softprops/action-gh-release v2.2.2 -> v3.0.1 - docker/setup-qemu-action v3.7.0 -> v4.1.0 - docker/setup-buildx-action v3.12.0 -> v4.1.0 - docker/metadata-action v5.10.0 -> v6.1.0 - docker/login-action v3.7.0 -> v4.2.0 - docker/build-push-action v6.19.2 -> v7.2.0 golangci/golangci-lint-action is intentionally left on v6.5.2: every Node 24 major (v7+) requires golangci-lint v2, which uses an incompatible config schema. Migrating .golangci.yml to v2 is deferred to a follow-up. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
✅ Deploy Preview for nebi-docs canceled.
|
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.
Closes #429
Summary
GitHub defaults Actions runners to Node 24 on 2026-06-16 and fully removes Node 20 in Fall 2026. This bumps every action under
.github/workflows/to its latest stable major so they run on the Node 24 runtime and stop emitting Node 20 deprecation annotations. Existing SHA pins are preserved — only the pinned SHA and its version comment change.Bumps
Intentional exception
golangci/golangci-lint-actionis left on v6.5.2 (which runs on Node 20). Every Node 24 major (v7+) installs golangci-lint v2, which uses an incompatible config schema — our.golangci.ymlis still v1 format (disable-all,gosimple,linters-settings,issues.exclude-files). Bumping it would force a golangci-lint v1→v2 config migration, which is out of scope for this version-bump-only change. Tracking that as a follow-up. This is the only remaining action that will still emit a Node 20 annotation.Out of scope (per issue)
🤖 Generated with Claude Code