Skip to content

Commit bd02cde

Browse files
CI: opt into Node 24 for GitHub Actions (#742)
* CI: opt into Node 24 for GitHub Actions * undo
1 parent 0c0a310 commit bd02cde

7 files changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/check_images.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
pull_request:
1212
types: [opened, synchronize, reopened]
1313

14+
env:
15+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
16+
1417
permissions:
1518
contents: read
1619
issues: write

.github/workflows/cleanup-branches.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ on:
2121
type: boolean
2222
default: false
2323

24+
env:
25+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
26+
2427
permissions:
2528
contents: write
2629
pull-requests: read

.github/workflows/data-processing.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ on:
4040
required: false
4141
type: boolean
4242
default: false
43+
44+
env:
45+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
4346
jobs:
4447
process-data:
4548
name: Process Data

.github/workflows/deploy.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ on:
1616
repository_dispatch:
1717
types: [data-update]
1818

19+
env:
20+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
21+
1922
# Note: PR staging deployments are handled by staging-aggregate.yaml
2023
# This workflow focuses on production deployments
2124

.github/workflows/link-check.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ on:
1414
- cron: '30 1 * * 1'
1515
workflow_dispatch:
1616

17+
env:
18+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
19+
1720
permissions:
1821
contents: read
1922
issues: write

.github/workflows/spell-check.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ on:
1818
default: true
1919
type: boolean
2020

21+
env:
22+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
23+
2124
permissions:
2225
contents: read
2326
issues: write

.github/workflows/staging-aggregate.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ on:
3232
type: boolean
3333
default: false
3434

35+
env:
36+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
37+
3538
# Workflow-level concurrency to queue staging builds (wait instead of cancel)
3639
concurrency:
3740
group: staging-aggregate

0 commit comments

Comments
 (0)