File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 11name : Generate SBOM with OWASP dep-scan and load into ScanCode.io
22
3+ # This workflow:
4+ # 1. Generates a CycloneDX SBOM for a container image using OWASP dep-scan.
5+ # 2. Uploads the SBOM as a GitHub artifact for future inspection.
6+ # 3. Loads the SBOM into ScanCode.io for further analysis.
7+ # 4. Runs assertions to verify that the SBOM was properly processed in ScanCode.io.
8+ #
9+ # It runs on demand, and once a week (scheduled).
10+
11+ on :
12+ workflow_dispatch :
13+ schedule :
14+ # Run once a week (every 7 days) at 00:00 UTC on Sunday
15+ - cron : " 0 0 * * 0"
16+
317on :
418 workflow_dispatch :
519 pull_request :
@@ -11,8 +25,7 @@ permissions:
1125 contents : read
1226
1327env :
14- # IMAGE_REFERENCE: "python:3.13.0-slim"
15- IMAGE_REFERENCE : " alpine:3.17.0"
28+ IMAGE_REFERENCE : " python:3.13.0-slim"
1629
1730jobs :
1831 generate-and-load-sbom :
You can’t perform that action at this time.
0 commit comments