Skip to content

Commit 60bd234

Browse files
committed
Add a "Find dependencies vulnerabilities" workflow based on scancode-action
Signed-off-by: tdruez <[email protected]>
1 parent b4b8cab commit 60bd234

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Find dependencies vulnerabilities
2+
3+
on: [push]
4+
5+
jobs:
6+
scan-codebase:
7+
runs-on: ubuntu-24.04
8+
name: Inspect packages with ScanCode.io
9+
steps:
10+
- uses: actions/checkout@v4
11+
with:
12+
sparse-checkout: setup.cfg
13+
sparse-checkout-cone-mode: false
14+
15+
- uses: nexB/scancode-action@alpha
16+
with:
17+
pipelines: "inspect_packages:StaticResolver,find_vulnerabilities"
18+
env:
19+
VULNERABLECODE_URL: https://public.vulnerablecode.io/

0 commit comments

Comments
 (0)