Workflows: Bump all actions versions to use node 24 - #228
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates GitHub Actions workflow dependencies to versions that run on Node.js 24, eliminating Node 20 deprecation warnings in CI while keeping existing workflow behavior (build, artifact handling, GCP deploy, release) intact.
Changes:
- Bump core GitHub Actions used in CI (
checkout,setup-node,upload-artifact,download-artifact) to current major versions. - Bump Google GitHub Actions used for deployment (
auth,upload-cloud-storage) to current major versions.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/release.yml | Updates checkout/setup-node action versions for the release workflow to align with Node 24 runtime. |
| .github/workflows/main.yml | Updates action versions across build, artifact, and deploy jobs to align with Node 24 runtime. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
drei01
approved these changes
Aug 17, 2026
drei01
left a comment
Contributor
There was a problem hiding this comment.
I'm not sure if you wanted a review on this but it looks good to me. Worst case (🌭 🧀) we just roll it back.
Contributor
Author
I totally did, thanks! 🙌 |
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.
For each build we get some warnings around Node 20 being deprecated (example), so let’s update all runners to use Node 24. I’ve read all related release notes for the updated runners, and it looks like the changes should be safe.
Resolves DEV-188