Skip to content

Commit 8ab4210

Browse files
bluesentinelsecMichael Long
andauthored
Fix Inspector markdown report write to disk (#38)
* adding a version file * fixed markdown output variable --------- Co-authored-by: Michael Long <mlongii@amazon.com>
1 parent 0928b3e commit 8ab4210

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

entrypoint/entrypoint/orchestrator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def execute(args) -> int:
342342
logging.info(f"writing markdown report to: {args.out_scan_markdown}")
343343
with open(args.out_scan_markdown, "w") as f:
344344
f.write(markdown)
345-
set_github_actions_output('inspector_scan_results_markdown', args.out_scan_csv)
345+
set_github_actions_output('inspector_scan_results_markdown', args.out_scan_markdown)
346346

347347
is_exceeded = exceeds_threshold(criticals, args.critical,
348348
highs, args.high,

version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.0.0

0 commit comments

Comments
 (0)