tenseleyflow/shithub / aa7e2bf

Browse files

deploy: opt into Node 24 for runner-side actions

Authored by espadonne
SHA
aa7e2bf17c8c2feda2a8afab2f25fad45cee7217
Parents
cce94ff
Tree
7b95f7b

1 changed file

StatusFile+-
M .github/workflows/deploy.yml 7 0
.github/workflows/deploy.ymlmodified
@@ -12,6 +12,13 @@ on:
1212
 permissions:
1313
   contents: read
1414
 
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
+
1522
 concurrency:
1623
   # Serialize deploys so two pushes in flight don't race on the
1724
   # remote git reset / binary swap.