ci: Update Actions for Node 20 deprecation#4384
Merged
Merged
Conversation
Contributor
Contributor
Preview deployments |
Contributor
jurgenwerk
approved these changes
Apr 13, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Updates GitHub Actions workflow dependencies to address Node 20 deprecation warnings (moving to newer action releases that run on newer Node), and simplifies long-running “start services” steps by replacing background-action with inline timeout/curl readiness waits.
Changes:
- Bump common GitHub Actions dependencies (cache, artifact upload/download, paths-filter, AWS credentials) across CI and deploy workflows.
- Replace
JarvusInnovations/background-actionusage with backgrounded shell commands plus explicit readiness polling usingtimeout+curl.
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/test-web-assets.yaml | Updates cache restore/save and artifact upload actions to newer versions. |
| .github/workflows/sync-synapse-templates.yml | Updates AWS credentials action version. |
| .github/workflows/preview-host.yml | Updates AWS credentials action version for preview deploy jobs. |
| .github/workflows/pr-boxel-ui.yml | Updates AWS credentials action version for UI preview deploy. |
| .github/workflows/deploy-ui.yml | Updates AWS credentials action version for UI deploy workflow. |
| .github/workflows/deploy-host.yml | Updates artifact download and AWS credentials actions for host deploy workflow. |
| .github/workflows/ci.yaml | Updates multiple actions (paths-filter, artifact upload/download, AWS creds) and replaces background-action with timeout/curl readiness loops. |
| .github/workflows/ci-software-factory.yaml | Updates artifact download/upload actions and replaces background-action with timeout/curl readiness loop. |
| .github/workflows/ci-host.yaml | Updates artifact download/upload actions used by host CI jobs. |
| .github/workflows/build-host.yml | Updates artifact upload action used to publish built host dist. |
| .github/actions/restore-icons-cache/action.yml | Updates cache action used by the composite icons cache restore action. |
| .github/actions/init/action.yml | Updates cache action used for pnpm store caching in the shared init composite action. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Many runs are showing Actions deprecation warnings:
So this updates those dependencies to newer versions that use Node 24.
It also replaces
background-action, which seems abandoned, with simpletimeoutscripts.