Upgrade GitHub Action to Node 24#1
Closed
suhas-coursera wants to merge 1 commit into
Closed
Conversation
- Update @actions/core from ^1.10.1 to ^1.11.1 - Update @vercel/ncc from ^0.38.1 to ^0.38.3 - Add engines field requiring Node >=24 - Update .eslintrc.yml: es2021 -> es2024 - Remove NODE_OPTIONS=--openssl-legacy-provider from Makefile (not needed on Node 24) - Update all workflow action versions: - actions/checkout v3 -> v4 - actions/setup-python v4 -> v5 - actions/setup-node v3 -> v4 - github/codeql-action v2 -> v3 - Update eslint workflow to Node 24 (was Node 20) - Temporarily point platform CI workflows to @node24-upgrade branch for testing - Add .nvmrc file for nvm auto-selection - Rebuild dist/index.js with updated ncc Co-Authored-By: Claude Haiku 4.5 <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
Upgrades the entire flake8 GitHub Action to Node 24, aligning with the
node24runtime already declared inaction.yml.Changes
Dependencies
@actions/core: ^1.10.1 → ^1.11.1@vercel/ncc: ^0.38.1 → ^0.38.3Configuration
NODE_OPTIONS=--openssl-legacy-provider(not needed on Node 24)es2021→es2024"engines": { "node": ">=24" }24)Workflows
actions/checkoutv3 → v4actions/setup-pythonv4 → v5actions/setup-nodev3 → v4github/codeql-actionv2 → v3@node24-upgradefor testingBuild
Test Plan
✅ Local verification (completed)
npm installcompletednpm run lintpassed (ESLint 0 errors)npm run packagesucceeded (dist/index.js rebuilt)📋 CI Testing (pending)
The three platform CI workflows are configured to use
@node24-upgradeso they test this branch's code:🚀 Generated with Claude Code