ci: bump actions to Node 24 runtime versions#185
Merged
Conversation
GitHub forces JS actions onto Node 24 on 2026-06-16 and removes Node 20 on 2026-09-16. Bump the pinned actions to their Node 24 majors to clear the deprecation warning: - actions/checkout v4 -> v6 - actions/setup-go v5 -> v6 - actions/setup-node v4 -> v6 - actions/create-github-app-token v1 -> v3 (inputs unchanged) - goreleaser/goreleaser-action v6 -> v7 (runtime-only change; with: inputs unchanged) GitHub-hosted runners already meet the v2.327.1 minimum these require. Co-authored-by: Cursor <cursoragent@cursor.com>
|
Firetiger deploy monitoring skipped This PR didn't match the auto-monitor filter configured on your GitHub connection:
Reason: This PR only modifies CI/CD workflow files and GitHub Actions versions, not the actual service code or infrastructure requiring deploy monitoring. To monitor this PR anyway, reply with |
hiroTamada
approved these changes
Jun 11, 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.
Summary
GitHub forces JS actions onto Node 24 on 2026-06-16 (Node 20 removed 2026-09-16). Bump the pinned actions across the three workflows that use them to their Node 24 majors:
actions/checkoutactions/setup-goactions/setup-nodeactions/create-github-app-tokengoreleaser/goreleaser-actioncreate-github-app-tokeninputs (app-id/private-key/repositories) andgoreleaser-actioninputs are unchanged across these majors (goreleaser-action v7 is a runtime-only bump). GitHub-hosted runners already meet the v2.327.1 minimum.Validation
test.yamlruns onpull_request, so thecheckout+setup-gobumps are exercised by this PR's check run.release.yamlonly runs on av*tag, so its bumps (goreleaser-action,setup-node, release-pathcreate-github-app-token/checkout) are not exercised here — they'll be confirmed on the next release.fix-ci.yamlis aworkflow_runworkflow (runs from the default branch), so its bumps take effect after merge.Made with Cursor
Note
Low Risk
Workflow-only version pin updates with no application or secret-handling logic changes; release and fix-ci bumps are not fully exercised until tag push and merge.
Overview
Bumps pinned GitHub Actions in fix-ci, release, and test workflows to majors that run on Node 24, ahead of GitHub’s deprecation of Node 20 for JS actions.
test.yaml and fix-ci.yaml move
actions/checkoutto v6 andactions/setup-goto v6; fix-ci and release also bumpactions/create-github-app-tokento v3. release.yaml additionally upgradesactions/setup-nodeto v6 andgoreleaser/goreleaser-actionto v7. Step inputs (app-id,private-key,go-version-file, GoReleaser args, etc.) are unchanged.This PR’s CI run exercises the test workflow bumps; release and post-merge fix-ci paths are validated on tag push and default-branch workflow runs respectively.
Reviewed by Cursor Bugbot for commit c8e4874. Bugbot is set up for automated code reviews on this repo. Configure here.