From b7002b877aaa0b126de0c83bc414c07da5d72471 Mon Sep 17 00:00:00 2001 From: josuah Date: Wed, 3 Apr 2024 13:05:10 +0400 Subject: [PATCH] removed default value for output_file --- action.yml | 1 - entrypoint.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 94ef4a3..6eadbda 100644 --- a/action.yml +++ b/action.yml @@ -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 diff --git a/entrypoint.sh b/entrypoint.sh index 0c8ee50..f13505f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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