diff --git a/action.yml b/action.yml index 81bc4e30..b84f70b1 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' @@ -168,6 +171,7 @@ runs: - ${{ inputs.policy_metadata_filter }} - ${{ inputs.skip_path }} - ${{ inputs.skip_cve_package }} + - ${{ inputs.skip_download }} - "--user ${{ inputs.container_user }}" env: API_KEY_VARIABLE: ${{ inputs.api-key }}