Skip to content

Commit 1aceb08

Browse files
committed
Deprecate Node v18
- Required Node version bumped - Version bumped - New Lock - New Node versions added to CI
1 parent aa48098 commit 1aceb08

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [18.x, 19.x, 20.x, 21.x]
13+
node-version: [20.x, 21.x, 22.x, 23.x, 24.x]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Use Node.js ${{ matrix.node-version }}

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 20
17+
node-version: 22
1818
- run: npm ci
1919

2020
publish-npm:
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v3
2525
- uses: actions/setup-node@v3
2626
with:
27-
node-version: 20
27+
node-version: 22
2828
registry-url: https://registry.npmjs.org/
2929
- run: npm ci
3030
- run: npm publish

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
@@ -1,7 +1,7 @@
11
{
22
"name": "@pylonide/v8debug",
33
"description": "Implementation of the V8 debugger protocol",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"license": "LGPL-3.0",
66
"homepage": "https://github.com/pylonide/lib-v8debug",
77
"author": "Sten Feldman <exile@chamber.ee>",
@@ -11,7 +11,7 @@
1111
],
1212
"main": "lib/v8debug",
1313
"engines": {
14-
"node": ">= 18.18.2"
14+
"node": ">= 20.19.0"
1515
},
1616
"dependencies": {
1717
"amd-loader": "~0.0.8"

0 commit comments

Comments
 (0)