Skip to content

Commit 450f84e

Browse files
fjakobsclaude
andcommitted
Bump Node.js version to 22 in remaining GitHub Actions workflows
Update all GitHub Actions workflows to use Node.js 22, completing the migration started in #1773. This ensures consistency across all CI/CD pipelines and aligns with the package.json requirement of Node.js >=22.0. Updated workflows: - create-build-artifacts.yml: 18 → 22 - push.yml: 18.x → 22.x - release-pr.yml: 18.x → 22.x - unit-tests.yml: 18.x → 22.x - update-cli-version.yml: 18.x → 22.x 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 067efd3 commit 450f84e

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/create-build-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818

19-
- name: Use Node.js 18
19+
- name: Use Node.js 22
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: 18
22+
node-version: 22
2323
cache: "yarn"
2424

2525
- run: yarn install

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515

16-
- name: Use Node.js 18.x
16+
- name: Use Node.js 22.x
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: 18.x
19+
node-version: 22.x
2020
cache: "yarn"
2121

2222
- run: yarn install --immutable

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
strategy:
2525
matrix:
26-
node-version: [18.x]
26+
node-version: [22.x]
2727
steps:
2828
- uses: actions/checkout@v4
2929
with:

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
os: macos-latest
1616
- cli_arch: windows_amd64
1717
os: windows-latest
18-
node-version: [18.x]
18+
node-version: [22.x]
1919
vscode-version: [stable]
2020

2121
runs-on: ${{ matrix.arch.os }}

.github/workflows/update-cli-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [18.x]
18+
node-version: [22.x]
1919

2020
steps:
2121
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)