We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0137efc commit 33921a3Copy full SHA for 33921a3
1 file changed
.github/workflows/trivy_images.yaml
@@ -94,6 +94,14 @@ jobs:
94
merge-multiple: true
95
- id: combine-sarifs
96
run: |
97
+ # Debug: Show what was downloaded
98
+ echo "Current directory structure"
99
+ ls -la
100
+ echo "Looking for sarif directory"
101
+ ls -la sarif/ || echo "No sarif directory found"
102
+ echo "All .sarif files"
103
+ find . -name "*.sarif" -type f || echo "No SARIF files found anywhere"
104
+
105
# With merge-multiple: true, all artifacts are in the same directory
106
# Find all SARIF files regardless of subdirectory structure
107
all_files=()
0 commit comments