Skip to content

Commit

Permalink
Fix Inspector markdown report write to disk (#38)
Browse files Browse the repository at this point in the history
* adding a version file

* fixed markdown output variable

---------

Co-authored-by: Michael Long <[email protected]>
  • Loading branch information
bluesentinelsec and Michael Long authored Apr 23, 2024
1 parent 0928b3e commit 8ab4210
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint/entrypoint/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def execute(args) -> int:
logging.info(f"writing markdown report to: {args.out_scan_markdown}")
with open(args.out_scan_markdown, "w") as f:
f.write(markdown)
set_github_actions_output('inspector_scan_results_markdown', args.out_scan_csv)
set_github_actions_output('inspector_scan_results_markdown', args.out_scan_markdown)

is_exceeded = exceeds_threshold(criticals, args.critical,
highs, args.high,
Expand Down
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.0.0

0 comments on commit 8ab4210

Please sign in to comment.