fix(ci): restore Node.js 24 actions; revert incorrect v4 downgrade - #240
Merged
Conversation
PR #231 (d4528cb) downgraded checkout/setup-python from @v6 to @v4 and added FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 as a workaround. @v4 actions use the Node.js 20 runtime which GitHub is deprecating on June 16 2026. @v6 uses Node.js 24 and needs no env-var shim. Restore the five workflow files to the versions that were passing CI before the downgrade. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
@v4→@v6foractions/checkoutandactions/setup-pythonin ci.yml, codeql.yml, and scorecard.ymlactions/setup-python@v5in publish.yml (which fix: ci actions, changelog urls, coc, opaque stub disclosure #231 also incorrectly downgraded from v5 to v4)FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"env var added by fix: opt into node.js 24 across all workflows before june 16 deadline #239 (484a07a) — this shim is unnecessary with @v6 actions, which already run on Node.js 24actions/upload-artifact@v4and third-party actions (codeql-action@v3, ossf/scorecard-action@v2) unchanged — no newer versions available that change the runtimeRoot cause: The last passing CI run (bb0726f, 2026-06-06 22:25 UTC) used @v6 in all workflows with no env-var shim. PR #231 misdiagnosed the CI failure and downgraded to @v4, which uses the Node.js 20 runtime that GitHub is deprecating on June 16 2026.
Test plan
actions/checkout@v6andactions/setup-python@v6appear in step names in the run log🤖 Generated with Claude Code