ci: bump actions to v6 (Node 24) - #387
Merged
Merged
Conversation
actions/checkout@v4 and actions/setup-node@v4 run on Node 20, which GitHub deprecated and forces to Node 24 from 2026-06-16. Bump both to v6 (latest; Node 24) across the test and release workflows to clear the deprecation warning that appeared on every matrix job.
There was a problem hiding this comment.
Pull request overview
This PR updates GitHub Actions workflow dependencies to newer major versions to avoid upcoming GitHub-hosted runner deprecation warnings related to Node.js 20.
Changes:
- Bump
actions/checkoutfromv4tov5in the PostGIS test workflow (both checkouts). - Bump
actions/checkouttov5andactions/setup-nodetov5in the release workflow.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/test-postgis.yml | Updates both actions/checkout steps to @v5 to eliminate Node 20 deprecation warnings. |
| .github/workflows/release.yml | Updates actions/checkout and actions/setup-node to @v5 for Node 24-based action runtimes. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
dkastl
force-pushed
the
ci/bump-actions-node24
branch
from
June 14, 2026 13:52
a7c777c to
49f5978
Compare
dkastl
added a commit
that referenced
this pull request
Jun 14, 2026
Node 22 was the carried-over pin; bump both Node usages in test-postgis.yml (the frontend job's setup-node, and the matrix NodeSource install) to 24, the current LTS. Independent of #387, which bumped the action runtime.
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.
actions/checkout@v4andactions/setup-node@v4run on Node.js 20, which GitHub has deprecated and will force to Node 24 starting 2026-06-16. Every matrix job currently logs:Bumps both to the current major v6 (Node 24) across
test-postgis.yml(2x checkout) andrelease.yml(checkout + setup-node). These are the only actions the workflows use. No behavioral change; clears the warning. CI on this PR exercises the bumped checkout actions.