Skip to content

Commit c268cb6

Browse files
chore: update node version to 22 from 20 (#201)
1 parent 2f36476 commit c268cb6

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/create_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Node.js
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: '20.x'
17+
node-version: '22.x'
1818

1919
- name: Install dependencies
2020
run: npm install

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 20 ]
9+
node: [ 22 ]
1010
name: Linting on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/prettier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 20 ]
9+
node: [ 22 ]
1010
name: Prettier on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Node.js
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: '20.x'
21+
node-version: '22.x'
2222

2323
- name: Install dependencies
2424
run: npm install

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [20, 22]
9+
node: [22, 24]
1010
name: Tests with code coverage on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v4
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: windows-latest
3333
strategy:
3434
matrix:
35-
node: [20, 22]
35+
node: [22, 24]
3636
name: Tests with code coverage on Windows with Node ${{ matrix.node }}
3737
steps:
3838
- uses: actions/checkout@v4

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"publisher": "salesforce",
77
"engines": {
88
"vscode": "^1.77.0",
9-
"node": ">=20"
9+
"node": ">=22"
1010
},
1111
"volta": {
12-
"node": "20.18.0"
12+
"node": "22.21.1"
1313
},
1414
"categories": [
1515
"Other"

0 commit comments

Comments
 (0)