You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 10, 2026. It is now read-only.
Bug summary
GitHub Actions: Node.js 20 deprecation warning in workflows (actions forced to Node.js 24)
Bug description
GitHub Actions logs show a deprecation warning indicating the workflows target Node.js 20. The Actions runner is forcing those actions to run on Node.js 24, producing warnings in the run output. While this currently is a warning, unattended deprecation may cause future failures or unexpected behavior. Updating workflow job Node versions to a supported runtime will remove noise and ensure consistent CI environment.
Preconditions
Workflows located under .github/workflows/*.yml reference node-version: 20 (or implicitly target node 20 via an action that expects Node 20).
The repo uses actions/setup-node@v4 or similar actions that accept node-version.
Steps to reproduce
Inspect workflow files under .github/workflows/. Look for node-version: 20 or other pinned values.
Bug summary
GitHub Actions: Node.js 20 deprecation warning in workflows (actions forced to Node.js 24)
Bug description
GitHub Actions logs show a deprecation warning indicating the workflows target Node.js 20. The Actions runner is forcing those actions to run on Node.js 24, producing warnings in the run output. While this currently is a warning, unattended deprecation may cause future failures or unexpected behavior. Updating workflow job Node versions to a supported runtime will remove noise and ensure consistent CI environment.
Preconditions
.github/workflows/*.ymlreferencenode-version: 20(or implicitly target node 20 via an action that expects Node 20).actions/setup-node@v4or similar actions that acceptnode-version.Steps to reproduce
.github/workflows/. Look fornode-version: 20or other pinned values.Node.js 20 is deprecated... are being forced to run on Node.js 24: actions/setup-node@v4.Expected result
24orlts/*) and run without deprecation warnings.Actual result
Suggested fix
node-version: 20tonode-version: 24ornode-version: 'lts/*'.CI link
https://github.com/amar-python/PostgreDataMigrationApp/actions/runs/31346507524/job/93329317109
Notes