We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f23b69d commit f74cafbCopy full SHA for f74cafb
.github/workflows/soup-packages-cve-check.yml
@@ -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
18
+ run: bash packages-cve-check.sh
19
+ - name: Upload CVE Check for Packages Report
20
+ uses: actions/upload-artifact@v4
21
22
+ name: cve-report
23
+ path: cve-report.json
0 commit comments