From c5d39a4631c77e27b4c1bde1066b48be61cef349 Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Thu, 29 Oct 2020 18:23:56 +0000 Subject: [PATCH] Always use the latest version of Checkov For inclusion of new builtin checks. --- samples/integration-testing/src/checkov.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/integration-testing/src/checkov.sh b/samples/integration-testing/src/checkov.sh index 5f4a9e3c..6ecd38c2 100755 --- a/samples/integration-testing/src/checkov.sh +++ b/samples/integration-testing/src/checkov.sh @@ -22,7 +22,7 @@ WORK_DIR=${1-$(pwd)} ####################################### run_checkov() { local test_dir=$1 - docker run -t -v "${test_dir}":/tf bridgecrew/checkov:release-1.0.235 -d /tf + docker run -t -v "${test_dir}":/tf bridgecrew/checkov:latest -d /tf } #######################################