Skip to content

Commit

Permalink
removed default value for output_file
Browse files Browse the repository at this point in the history
  • Loading branch information
josuah committed Apr 3, 2024
1 parent 14bd775 commit b7002b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ inputs:
output-file:
description: 'filename for output file. if empty or output not set to html or json, no file will be generated.'
required: false
default: bomber_output
ignore-file:
description: name of the file containing CVEs to ignore
required: false
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ echo 'Started ... reading parameters'
SBOM_FILE="${INPUT_SBOM_FILE:-sbom.json}"
DATA_PROVIDER="${INPUT_DATA_PROVIDER:-ovs}"
OUTPUT_FORMAT="${INPUT_OUTPUT_FORMAT:-stdout}"
OUTPUT_FILE="${INPUT_OUTPUT_FILE:-bomber_output}"
OUTPUT_FILE="${INPUT_OUTPUT_FILE:-}"
IGNORE_FILE="${INPUT_IGNORE_FILE:-}"

# Check if SBOM file exists
Expand Down

0 comments on commit b7002b8

Please sign in to comment.