You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add --out-scan-markdown CLI arg
* change --out-scan-markdown to string from bool
* pass --display-vuln-findings as string
* write markdown report to disk
---------
Co-authored-by: Michael Long <mlongii@amazon.com>
Copy file name to clipboardExpand all lines: action.yml
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ inputs:
13
13
default: './'
14
14
15
15
display_vulnerability_findings:
16
-
description: 'If true, the action will display detailed vulnerability findings in the action summary page; see here for an example: https://github.com/aws-actions/vulnerability-scan-github-action-for-amazon-inspector/actions/runs/8742638284/attempts/1#summary-23991378549'
16
+
description: 'If set to "enabled", the action will display detailed vulnerability findings in the action summary page; see here for an example: https://github.com/aws-actions/vulnerability-scan-github-action-for-amazon-inspector/actions/runs/8742638284/attempts/1#summary-23991378549'
17
17
required: True
18
-
default: False
18
+
default: "disabled"
19
19
20
20
output_sbom_path:
21
21
description: "The destination file path for the generated SBOM."
description: "The destination file path for Inspector's vulnerability scan (CSV format)."
37
+
required: False
38
+
default: 'inspector_scan_${{ github.run_id }}.md'
39
+
35
40
36
41
sbomgen_version:
37
42
description: "The inspector-sbomgen version you wish to use for SBOM generation. See here for more info: https://docs.aws.amazon.com/inspector/latest/user/sbom-generator.html"
help='The path to the artifact you would like to scan with Amazon Inspector. If scanning a container image, you must provide a value that follows the docker pull convention: "NAME[:TAG|@DIGEST]", for example, "alpine:latest", or a path to an image exported as tarball using "docker save".')
help="The amount of time in seconds that inspector-sbomgne will run. When this timeout is exceeded, sbomgen will gracefully conclude and present any findings discovered up to that point.")
0 commit comments