feat: add GitHub Actions Node.js runtime upgrade agent#1118
Open
joshjohanning wants to merge 1 commit intogithub:mainfrom
Open
feat: add GitHub Actions Node.js runtime upgrade agent#1118joshjohanning wants to merge 1 commit intogithub:mainfrom
joshjohanning wants to merge 1 commit intogithub:mainfrom
Conversation
Add an agent that handles the full lifecycle of upgrading GitHub Actions JavaScript/TypeScript actions to newer Node.js runtime versions, including action.yml changes, major version bumps, CI workflow updates, documentation updates, and build validation.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new declarative agent that guides maintainers through upgrading a JavaScript/TypeScript GitHub Action to a newer Node runtime (e.g., node20 → node24), and registers it in the agents catalog.
Changes:
- Added
github-actions-node-upgradeagent content with step-by-step upgrade workflow and validation guidance. - Registered the new agent in
docs/README.agents.mdso it appears in the repo’s agent index.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| docs/README.agents.md | Adds the new agent entry to the public agents list (with install badges). |
| agents/github-actions-node-upgrade.agent.md | Introduces a new agent describing an end-to-end Node runtime upgrade process for GitHub Actions JS/TS actions. |
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.
Add an agent that handles the full lifecycle of upgrading GitHub Actions JavaScript/TypeScript actions to newer Node runtime versions, including action.yml changes, major version bumps, CI workflow updates, documentation updates, and build validation.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.Description
Adds a new agent (
github-actions-node-upgrade.agent.md) that guides the upgrade of a GitHub Actions JavaScript/TypeScript action to a newer Node runtime version (e.g., node20 to node24).With node20 deprecated on GitHub Actions runners, hundreds of actions need to migrate to node24. This agent provides a standardized, step-by-step workflow covering:
runs.usinginaction.ymlnpm version majorComplements the existing
github-actions-expertagent, which focuses on general CI/CD security and best practices, while this agent targets a specific, repeatable upgrade task.Type of Contribution
Additional Notes
No paid services involved. This agent has been tested against multiple JavaScript actions (e.g.
https://github.com/joshjohanning/azdo_commit_message_validator/pull/160) for the node20 to node24 migration.By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.