Skip to content

Commit a4e7d5b

Browse files
authored
chore!: drop support for Node versions <20, update deps, patch sec vulns (#196)
* update deps * fix: revert GHA workflow trigger changes * fix: dependabot config * chore: revert dependabot changes
1 parent 6c0e586 commit a4e7d5b

File tree

3 files changed

+27
-24
lines changed

3 files changed

+27
-24
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest]
20-
node: [18, 20]
20+
node: [20, 22, 24]
2121

2222
steps:
23-
- uses: actions/checkout@v3
24-
- name: Use Node.js ${{ matrix.node }}
25-
uses: actions/setup-node@v3
26-
with:
27-
node-version: ${{ matrix.node }}
28-
- run: npm i
29-
- run: npm test
23+
- uses: actions/checkout@v4
24+
- name: Use Node.js ${{ matrix.node }}
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: ${{ matrix.node }}
28+
- run: npm i
29+
- run: npm test

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
node_modules/
2+
test/
3+
CONTRIBUTING.md
14
rocket.png

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,29 @@
2121
"Ted Janeczko <[email protected]>"
2222
],
2323
"dependencies": {
24-
"@octokit/rest": "^19.0.5",
25-
"changelog-parser": "^3.0.0",
24+
"@octokit/rest": "^20.1.2",
25+
"changelog-parser": "^3.0.1",
2626
"deep-extend": "^0.6.0",
27-
"gauge": "^v5.0.0",
28-
"gh-release-assets": "^2.0.0",
29-
"ghauth": "^5.0.0",
30-
"github-url-to-object": "^4.0.4",
31-
"inquirer": "^8.0.0",
32-
"shelljs": "^0.8.4",
33-
"update-notifier": "^5.0.0",
34-
"yargs": "^17.0.0"
27+
"gauge": "^5.0.2",
28+
"gh-release-assets": "^2.0.1",
29+
"ghauth": "^6.0.13",
30+
"github-url-to-object": "^4.0.6",
31+
"inquirer": "^8.2.6",
32+
"shelljs": "^0.10.0",
33+
"update-notifier": "^5.1.0",
34+
"yargs": "^17.7.2"
3535
},
3636
"devDependencies": {
37-
"git-pull-or-clone": "^2.0.1",
37+
"git-pull-or-clone": "^2.0.2",
3838
"npm-run-all": "^4.1.5",
3939
"snazzy": "^9.0.0",
40-
"standard": "^17.0.0",
41-
"tap-arc": "^0.3.4",
42-
"tape": "^5.0.1",
43-
"tmp": "v0.2.1"
40+
"standard": "^17.1.2",
41+
"tap-arc": "^1.3.2",
42+
"tape": "^5.9.0",
43+
"tmp": "^0.2.3"
4444
},
4545
"engines": {
46-
"node": ">=14"
46+
"node": ">=20"
4747
},
4848
"files": [
4949
"bin/",

0 commit comments

Comments
 (0)