Skip to content

Commit 88433f9

Browse files
committed
Debug GitHub workflow for OWASP dep-scan
Signed-off-by: tdruez <[email protected]>
1 parent 680fe09 commit 88433f9

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/sca-integration-depscan.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
name: 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+
317
on:
418
workflow_dispatch:
519
pull_request:
@@ -11,8 +25,7 @@ permissions:
1125
contents: read
1226

1327
env:
14-
# IMAGE_REFERENCE: "python:3.13.0-slim"
15-
IMAGE_REFERENCE: "alpine:3.17.0"
28+
IMAGE_REFERENCE: "python:3.13.0-slim"
1629

1730
jobs:
1831
generate-and-load-sbom:

0 commit comments

Comments
 (0)