Upgrade Node 20-deprecated Actions (pkm#531)#8
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Upgrades first-party GitHub Actions used in workflows to Node 24–compatible major versions, aligning the repository’s CI/automation with GitHub’s 2026 runner runtime changes.
Changes:
- Bump
actions/checkoutfromv4tov5in workflows. - Bump
actions/setup-nodefromv4tov5in workflows.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/ci.yml | Update first-party Actions versions used by the CI job. |
| .github/workflows/agentdb-learning.yml | Update first-party Actions versions used by AgentDB learning jobs. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
17
to
+21
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/checkout@v5 | ||
|
|
||
| - name: Use Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v4 | ||
| uses: actions/setup-node@v5 |
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.
Upgrades first-party GitHub Actions pinned to the deprecated Node 20 (or older Node 16) runtime to their first Node 24-compatible major.
GitHub forced Node 24 as the default Actions runtime on 2026-06-02; Node 20 is removed from runners on 2026-09-16. Tracked in michaeloboyle/pkm#531.
checkout v3/v4->v5, setup-node v4->v5, setup-python v5->v6, github-script v6/v7->v8, upload/download-artifact v4->v5, cache v4->v5, configure-pages v4->v6, deploy-pages v4->v5, labeler v5->v6, setup-java v4->v5.
Third-party actions (google-github-actions/*, codecov, firebase-action, etc.) are maintainer-owned and left as-is. Bumped to the first Node 24 major (not absolute latest) to minimize breaking-change surface.
Generated with Claude Code.