Skip to content

Commit ed3b970

Browse files
committed
fix CI issues - upgrade 22 to node 24 (current LTS)
1 parent 1a4b0cf commit ed3b970

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/binary-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Use Node.js 22.x
4343
uses: actions/setup-node@v6
4444
with:
45-
node-version: "22.x"
45+
node-version: "24.x"
4646
- name: Install node deps
4747
run: bun install
4848
- name: Enable turborepo build cache

.github/workflows/framework-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Setup Node.js
6161
uses: actions/setup-node@v6
6262
with:
63-
node-version: '22.x'
63+
node-version: '24.x'
6464

6565
- name: Install dependencies
6666
run: bun install
@@ -106,7 +106,7 @@ jobs:
106106
- name: Setup Node.js
107107
uses: actions/setup-node@v6
108108
with:
109-
node-version: '22.x'
109+
node-version: '24.x'
110110

111111
- name: Setup pnpm
112112
uses: pnpm/action-setup@v5

.github/workflows/release-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Use Node.js 22.x
3030
uses: actions/setup-node@v6
3131
with:
32-
node-version: "22.x"
32+
node-version: "24.x"
3333
- name: Install node deps
3434
run: bun install
3535
- name: Enable turborepo build cache

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Use Node.js 22.x
3636
uses: actions/setup-node@v6
3737
with:
38-
node-version: "22.x"
38+
node-version: "24.x"
3939
- name: Install node deps
4040
run: bun install
4141
- name: Enable turborepo build cache

.github/workflows/smoke-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup Node.js
5555
uses: actions/setup-node@v6
5656
with:
57-
node-version: '22.x'
57+
node-version: '24.x'
5858

5959
- name: Install dependencies
6060
run: bun install
@@ -122,7 +122,7 @@ jobs:
122122
fail-fast: false
123123
matrix:
124124
os: [ubuntu-latest, macos-latest, windows-latest]
125-
node-version: ['22.x']
125+
node-version: ['24.x']
126126
include:
127127
- os: ubuntu-latest
128128
binary-artifact: varlock-binary-linux-x64

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Use Node.js 22.x
2626
uses: actions/setup-node@v6
2727
with:
28-
node-version: "22.x"
28+
node-version: "24.x"
2929
- name: Install js deps (w/ bun)
3030
run: bun install
3131
- name: Dogfood varlock-action

.github/workflows/vscode-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Use Node.js 22.x
2525
uses: actions/setup-node@v6
2626
with:
27-
node-version: "22.x"
27+
node-version: "24.x"
2828
- name: Install node deps
2929
run: bun install
3030

docs/smoke-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The full cross-platform smoke test suite runs automatically on **release PRs onl
1919
- Windows Latest
2020

2121
**Runtimes tested:**
22-
- Node.js 22.x
22+
- Node.js 24.x
2323
- Bun (latest)
2424

2525
### Local Testing

framework-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"test:vite": "vitest run frameworks/vite"
1818
},
1919
"devDependencies": {
20-
"@types/node": "^22.0.0",
20+
"@types/node": "^24.0.0",
2121
"vitest": "^3.2.4",
2222
"typescript": "^5.9.3"
2323
}

0 commit comments

Comments
 (0)