From 374d9f0e10dde9a0b5712d5f69c64784e7518e3c Mon Sep 17 00:00:00 2001 From: Santiago Garcia Arango Date: Sat, 16 Sep 2023 12:47:10 -0500 Subject: [PATCH] Test check fail validation --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 04caa1e..12b80e7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -117,10 +117,11 @@ jobs: - name: Run Checkov action id: checkov uses: bridgecrewio/checkov-action@v12 + continue-on-error: true with: directory: cdk-synth-output-folder/ framework: cloudformation - soft_fail: true # optional: do not return an error code if there are failed checks + soft_fail: false # optional: do not return an error code if there are failed checks skip_check: CKV_AWS_2 # optional: skip a specific check_id. can be comma separated list quiet: true # optional: display only failed checks log_level: WARNING # optional: set log level. Default WARNING