ci: bump GitHub Actions to Node 24-compatible majors - #16
Merged
Conversation
Node.js 20 was deprecated on GitHub-hosted runners (https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/), so the v0.1.0 release run logged a deprecation warning for every Node 20 action it pulled in. Bump to the current major versions that ship with the Node 24 runtime: actions/checkout v4 -> v6 actions/setup-go v5 -> v6 goreleaser/goreleaser-action v6 -> v7 golangci/golangci-lint-action v8 -> v9 Inputs are unchanged for the configurations we use. setup-go v6 requires runner v2.327.1 or newer; GitHub-hosted runners are kept current so this is satisfied. Two action references are intentionally left untouched: - snapcore/action-build@v1 still ships node20 upstream; no Node 24 release exists yet. - vedantmgoyal2009/winget-releaser@v2 is a composite action and has no Node runtime, so the deprecation does not apply.
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.
Summary
The v0.1.0 release run logged a Node.js 20 deprecation warning for every action that still ran on the older runtime. This bumps each affected action to the current major that ships with Node 24:
Reviewed each major's release notes -- the inputs we use (`go-version`, `version`, `distribution`, `args`) are unchanged. `actions/setup-go@v6` requires GitHub Actions runner >=2.327.1, which GitHub-hosted runners satisfy.
Intentionally left untouched
Test plan