Skip to content

Commit 28ccd5d

Browse files
authored
Merge branch 'main' into fix/135/by-filing-cabinet
2 parents d9f86f5 + b699b67 commit 28ccd5d

File tree

8 files changed

+2286
-8099
lines changed

8 files changed

+2286
-8099
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- "**"
7-
- "!dependabot/**"
6+
- "main"
87
pull_request:
98
workflow_dispatch:
109

@@ -23,16 +22,16 @@ jobs:
2322
fail-fast: false
2423
matrix:
2524
os: [ubuntu-latest, windows-latest]
26-
node: [14, 16, 18, 20]
25+
node: [18, 20]
2726

2827
steps:
2928
- name: Clone repository
30-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3130
with:
3231
persist-credentials: false
3332

3433
- name: Set up Node.js
35-
uses: actions/setup-node@v3
34+
uses: actions/setup-node@v4
3635
with:
3736
node-version: ${{ matrix.node }}
3837
cache: npm

.github/workflows/codeql.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ on:
44
push:
55
branches:
66
- main
7-
- "!dependabot/**"
87
pull_request:
98
branches:
109
- main
11-
- "!dependabot/**"
1210
schedule:
1311
- cron: "0 0 * * 0"
1412
workflow_dispatch:
@@ -24,21 +22,21 @@ jobs:
2422

2523
steps:
2624
- name: Clone repository
27-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2826
with:
2927
persist-credentials: false
3028

3129
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v2
30+
uses: github/codeql-action/init@v3
3331
with:
3432
config-file: ./.github/codeql/codeql-config.yml
3533
languages: "javascript"
3634
queries: +security-and-quality
3735

3836
- name: Autobuild
39-
uses: github/codeql-action/autobuild@v2
37+
uses: github/codeql-action/autobuild@v3
4038

4139
- name: Perform CodeQL Analysis
42-
uses: github/codeql-action/analyze@v2
40+
uses: github/codeql-action/analyze@v3
4341
with:
4442
category: "/language:javascript"

.github/workflows/lint.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ name: Lint
33
on:
44
push:
55
branches:
6-
- "**"
7-
- "!dependabot/**"
6+
- "main"
87
pull_request:
98
workflow_dispatch:
109

1110
env:
1211
FORCE_COLOR: 2
13-
NODE: 18
12+
NODE: 20
1413

1514
permissions:
1615
contents: read
@@ -21,12 +20,12 @@ jobs:
2120

2221
steps:
2322
- name: Clone repository
24-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2524
with:
2625
persist-credentials: false
2726

2827
- name: Set up Node.js
29-
uses: actions/setup-node@v3
28+
uses: actions/setup-node@v4
3029
with:
3130
node-version: ${{ env.NODE }}
3231
cache: npm

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
'use strict';
44

5-
const program = require('commander');
5+
const { program } = require('commander');
66
const dependencyTree = require('../index.js');
77
const { name, description, version } = require('../package.json');
88

0 commit comments

Comments
 (0)