Skip to content

Commit 4f74428

Browse files
authored
Merge pull request #78 from salesforce/node20
chore: upgrade to node >=20
2 parents 0dfced4 + 5badd23 commit 4f74428

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.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: [18, 20]
9+
node: [ 20 ]
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: [18, 20]
9+
node: [ 20 ]
1010
name: Prettier on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
matrix:
1414
node-version:
15-
- 18.x
1615
- 20.x
16+
- 22.x
1717
os:
1818
- ubuntu-latest
1919

.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: [18, 20]
9+
node: [ 20, 22 ]
1010
name: Run tests on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v4
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: windows-latest
2121
strategy:
2222
matrix:
23-
node: [18, 20]
23+
node: [ 20, 22 ]
2424
name: Run tests on Windows with Node ${{ matrix.node }}
2525
steps:
2626
- uses: actions/checkout@v4

package-lock.json

Lines changed: 1 addition & 1 deletion
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
@@ -51,7 +51,7 @@
5151
"trailingComma": "none"
5252
},
5353
"engines": {
54-
"node": ">=18"
54+
"node": ">=20"
5555
},
5656
"type": "commonjs",
5757
"main": "dist/index.js",
@@ -99,7 +99,7 @@
9999
"eslint": ">=7"
100100
},
101101
"volta": {
102-
"node": "20.10.0"
102+
"node": "20.18.0"
103103
},
104104
"publishConfig": {
105105
"registry": "https://registry.npmjs.org/"

0 commit comments

Comments
 (0)