From 71e6d9e299620f0c07212e40a830de8262d20a1b Mon Sep 17 00:00:00 2001 From: "Alexej Disterhoft (DPDHL IT Services)" Date: Wed, 8 Nov 2023 23:23:33 +0100 Subject: [PATCH] add `skip_download` option This allows to enable the `--skip-download` argument on `checkov` runs if `skip_download` input is set. Requires https://github.com/bridgecrewio/checkov/pull/5734 to be merged and released prior to this. Signed-off-by: Alexej Disterhoft (DPDHL IT Services) --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index 91a89f8c..5a494482 100644 --- a/action.yml +++ b/action.yml @@ -127,6 +127,9 @@ inputs: skip_cve_package: description: 'Filter scan to run on all packages except for a specific CVE package identifier, e.g. CVE-2018-19788 (comma separated)' required: false + skip_download: + description: 'Do not download any data from Bridgecrew. This will omit doc links, severities, etc., as well as custom policies and suppressions if using an API token. Note: it will prevent BC platform IDs from being available in Checkov.' + required: false outputs: results: description: 'The results from the infrastructure scan'