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 bfa7cbe commit 070ca1eCopy full SHA for 070ca1e
entrypoint/entrypoint/orchestrator.py
@@ -58,7 +58,7 @@ def set_github_actions_output(key, value):
58
# set env var to expose SBOM contents
59
# to github actions
60
# https://docs.github.com/en/actions/using-jobs/defining-outputs-for-jobs
61
- logging.info(f"setting github actions output: {key}:{value}")
+ logging.debug(f"setting github actions output: {key}:{value}")
62
os.system(f'echo "{key}={value}" >> "$GITHUB_OUTPUT"')
63
64
return
@@ -319,6 +319,7 @@ def execute(args) -> int:
319
lows=lows,
320
others=others)
321
322
+ logging.info(f"writing CSV report to: {args.out_scan_csv}")
323
with open(args.out_scan_csv, "w") as f:
324
f.write(csv_output)
325
0 commit comments