Skip to content

Commit 2648a5a

Browse files
committed
Fix node versioning in Action Workflows and package.json
1 parent e24ca41 commit 2648a5a

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Node.js
5151
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
5252
with:
53-
node-version: "24.x"
53+
node-version: ">=24.16.0 <25"
5454
cache: "npm"
5555

5656
- name: Install dependencies

.github/workflows/migrations-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
if: steps.gate.outputs.should_migrate == 'true'
101101
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
102102
with:
103-
node-version: "24.x"
103+
node-version: ">=24.16.0 <25"
104104
cache: "npm"
105105

106106
- name: Install dependencies

.github/workflows/migrations-production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
if: steps.gate.outputs.should_migrate == 'true'
8080
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
8181
with:
82-
node-version: "24.x"
82+
node-version: ">=24.16.0 <25"
8383
cache: "npm"
8484

8585
- name: Install dependencies

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Node.js
5151
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
5252
with:
53-
node-version: "24.x"
53+
node-version: ">=24.16.0 <25"
5454
cache: "npm"
5555

5656
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Node.js
5252
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
5353
with:
54-
node-version: "24.x"
54+
node-version: ">=24.16.0 <25"
5555
cache: "npm"
5656

5757
- name: Install dependencies

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"private": "true",
1919
"engines": {
20-
"node": ">=^24.16.0 <25.0.0",
20+
"node": "24.x",
2121
"npm": ">=10.0.0"
2222
},
2323
"type": "module",

0 commit comments

Comments
 (0)