deploy: opt into Node 24 for runner-side actions
- SHA
aa7e2bf17c8c2feda2a8afab2f25fad45cee7217- Parents
-
cce94ff - Tree
7b95f7b
aa7e2bf
aa7e2bf17c8c2feda2a8afab2f25fad45cee7217cce94ff
7b95f7b| Status | File | + | - |
|---|---|---|---|
| M |
.github/workflows/deploy.yml
|
7 | 0 |
.github/workflows/deploy.ymlmodified@@ -12,6 +12,13 @@ on: | ||
| 12 | 12 | permissions: |
| 13 | 13 | contents: read |
| 14 | 14 | |
| 15 | +# GH Actions is migrating its built-in Node from 20 to 24 by 2026-09-16. | |
| 16 | +# Force our pinned action versions onto Node 24 now so the deprecation | |
| 17 | +# warning clears and the eventual default flip is a no-op for us. Drop | |
| 18 | +# this once every action below is bumped to a Node-24-native release. | |
| 19 | +env: | |
| 20 | + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| 21 | + | |
| 15 | 22 | concurrency: |
| 16 | 23 | # Serialize deploys so two pushes in flight don't race on the |
| 17 | 24 | # remote git reset / binary swap. |