feat!: update action to node24 and update all npm and GitHub Actions dependencies#56
Merged
FidelusAleksander merged 4 commits intomainfrom Mar 23, 2026
Merged
Conversation
- Update action.yml to use node24 instead of node20 - Update .node-version to 24.14.0 - Update package.json engines to >=24 - Update all npm dependencies to latest versions - Update GitHub Actions: checkout v5→v6, setup-node v5→v6, upload-artifact v4→v6, codeql-action v3→v4, setup-licensed v1.3.2→v2 - Fix eslint config tsconfigRootDir for updated typescript-eslint - Rebuild dist/ directory Co-authored-by: FidelusAleksander <63016446+FidelusAleksander@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update action to use node24 and latest dependencies
Update action to node24 and update all npm and GitHub Actions dependencies
Mar 20, 2026
node24 and update all npm and GitHub Actions dependencies
There was a problem hiding this comment.
Pull request overview
Migrates this GitHub Action and its CI/tooling to Node.js 24, while updating npm dependencies and GitHub Actions workflow action references to newer major versions.
Changes:
- Bump the action runtime and repo Node version from Node 20 to Node 24 (
action.yml,.node-version,package.jsonengines). - Update npm dependencies/devDependencies to newer major versions (notably
@actions/core,@github/local-action, TypeScript/ESLint tooling). - Update workflow
uses:references to newer major versions ofactions/*andgithub/codeql-action/*, and adjust ESLint config fortsconfigRootDir.
Reviewed changes
Copilot reviewed 11 out of 14 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Raises Node engine requirement and bumps npm dependencies/devDependencies. |
| eslint.config.mjs | Uses an absolute tsconfigRootDir (__dirname) for updated @typescript-eslint/parser. |
| action.yml | Switches action runtime to node24. |
| .node-version | Pins local/CI Node version to 24.14.0. |
| .github/workflows/update-release-tags.yml | Updates actions/checkout major version. |
| .github/workflows/release-drafter.yml | Updates actions/checkout major version. |
| .github/workflows/linter.yml | Updates actions/checkout and actions/setup-node major versions. |
| .github/workflows/licensed.yml | Updates actions/checkout, actions/setup-node, and licensee/setup-licensed major versions. |
| .github/workflows/codeql-analysis.yml | Updates actions/checkout and CodeQL action major versions. |
| .github/workflows/ci.yml | Updates actions/checkout and actions/setup-node major versions. |
| .github/workflows/check-dist.yml | Updates actions/checkout, actions/setup-node, and actions/upload-artifact major versions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
FidelusAleksander
approved these changes
Mar 20, 2026
chriswblake
approved these changes
Mar 20, 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.
Migrate the action runtime from node20 to node24 and bring all dependencies to their latest versions.
Node.js 24
action.yml:node20→node24.node-version:20.9.0→24.14.0package.jsonengines:>=20→>=24npm dependencies
All packages updated to latest. Notable major bumps:
@actions/core^1.11.1→^3.0.0@eslint/compat^1.3.0→^2.0.3@github/local-action^3.2.1→^7.0.1@rollup/plugin-commonjs^28.0.5→^29.0.2@types/node^20.19.0→^25.5.0typescript^5.8.3→^5.9.3ESLint kept at
^9.29.0—eslint-plugin-importdoes not yet support v10.GitHub Actions
actions/checkoutv5→v6actions/setup-nodev5→v6actions/upload-artifactv4→v6github/codeql-action/*v3→v4licensee/setup-licensedv1.3.2→v2Fix: ESLint config
Updated
@typescript-eslint/parsernow requires an absolute path fortsconfigRootDir. Changed from'.'to__dirname(already computed in the same file):⚡ Quickly spin up Copilot coding agent tasks from anywhere on your macOS or Windows machine with Raycast.