Skip to content

Commit f74cafb

Browse files
committed
add cve report workflow
1 parent f23b69d commit f74cafb

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: SOUP - CVE Check for Packages
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
reports:
8+
runs-on: [self-hosted, Linux]
9+
steps:
10+
- uses: QuickBirdEng/actions/checkout-ssh@main
11+
with:
12+
ssh-private-key: ${{ secrets.CI_SSH_PRIVATE_KEY_FOR_GITHUB_PRIVATE_REPOS }}
13+
- name: Copy scripts
14+
shell: bash
15+
run: git clone git@github.com:QuickBirdEng/action-scripts.git action-scripts && mv action-scripts/* .
16+
- name: Run CVE Check for Packages
17+
shell: bash
18+
run: bash packages-cve-check.sh
19+
- name: Upload CVE Check for Packages Report
20+
uses: actions/upload-artifact@v4
21+
with:
22+
name: cve-report
23+
path: cve-report.json

0 commit comments

Comments
 (0)