Skip to content

Commit edf4ac4

Browse files
authored
build: Pin to Node 22.4 (#12980)
Let's pin to Node `22.4` - there's a regression with `22.5` that affects us. We can revert this pin after they do a Node.js release.
1 parent ac6e2f1 commit edf4ac4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ jobs:
519519
strategy:
520520
fail-fast: false
521521
matrix:
522-
node: [14, 16, 18, 20, 22]
522+
node: [14, 16, 18, 20, 22.4]
523523
steps:
524524
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
525525
uses: actions/checkout@v4
@@ -579,7 +579,7 @@ jobs:
579579
strategy:
580580
fail-fast: false
581581
matrix:
582-
node: [14, 16, 18, 20, 22]
582+
node: [14, 16, 18, 20, 22.4]
583583
steps:
584584
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
585585
uses: actions/checkout@v4
@@ -843,12 +843,12 @@ jobs:
843843
strategy:
844844
fail-fast: false
845845
matrix:
846-
node: [14, 16, 18, 20, 22]
846+
node: [14, 16, 18, 20, 22.4]
847847
typescript:
848848
- false
849849
include:
850850
# Only check typescript for latest version (to streamline CI)
851-
- node: 22
851+
- node: 22.4
852852
typescript: '3.8'
853853
steps:
854854
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
@@ -885,7 +885,7 @@ jobs:
885885
strategy:
886886
fail-fast: false
887887
matrix:
888-
node: [18, 20, 22]
888+
node: [18, 20, 22.4]
889889
remix: [1, 2]
890890
# Remix v2 only supports Node 18+, so run 16 tests separately
891891
include:
@@ -1409,7 +1409,7 @@ jobs:
14091409
- os: ubuntu-20.04
14101410
node: 20
14111411
- os: ubuntu-20.04
1412-
node: 22
1412+
node: 22.4
14131413

14141414
# x64 musl
14151415
- os: ubuntu-20.04
@@ -1423,7 +1423,7 @@ jobs:
14231423
node: 20
14241424
- os: ubuntu-20.04
14251425
container: node:22-alpine3.18
1426-
node: 22
1426+
node: 22.4
14271427

14281428
# arm64 glibc
14291429
- os: ubuntu-20.04
@@ -1437,7 +1437,7 @@ jobs:
14371437
node: 20
14381438
- os: ubuntu-20.04
14391439
arch: arm64
1440-
node: 22
1440+
node: 22.4
14411441

14421442
# arm64 musl
14431443
- os: ubuntu-20.04
@@ -1455,7 +1455,7 @@ jobs:
14551455
- os: ubuntu-20.04
14561456
arch: arm64
14571457
container: node:22-alpine3.18
1458-
node: 22
1458+
node: 22.4
14591459

14601460
# macos x64
14611461
- os: macos-13
@@ -1468,7 +1468,7 @@ jobs:
14681468
node: 20
14691469
arch: x64
14701470
- os: macos-13
1471-
node: 22
1471+
node: 22.4
14721472
arch: x64
14731473

14741474
# macos arm64
@@ -1486,7 +1486,7 @@ jobs:
14861486
target_platform: darwin
14871487
- os: macos-13
14881488
arch: arm64
1489-
node: 22
1489+
node: 22.4
14901490
target_platform: darwin
14911491

14921492
# windows x64
@@ -1500,7 +1500,7 @@ jobs:
15001500
node: 20
15011501
arch: x64
15021502
- os: windows-2022
1503-
node: 22
1503+
node: 22.4
15041504
arch: x64
15051505

15061506
steps:

0 commit comments

Comments
 (0)