We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b0dc8f commit 1e86199Copy full SHA for 1e86199
actions/docker/scan-docker-repo/summarize.sh
@@ -9,7 +9,7 @@ echo ""
9
echo "CVEs found:"
10
cat "${report_file}" |
11
jq -r '
12
- select(.Results[].Vulnerabilities) |
+ select(.Results) | select(.Results[].Vulnerabilities) |
13
[
14
.ArtifactName,
15
(
@@ -31,7 +31,7 @@ echo ""
31
echo "Misconfigurations found: "
32
33
34
- select(.Results | any(.Misconfigurations)) |
+ select(.Results) | select(.Results | any(.Misconfigurations)) |
35
36
37
0 commit comments