Merge pull request #60 from metahertz/fix-issue-57

Always use the latest version of Checkov
This commit is contained in:
Mark Gray (MSFT) 2021-04-06 17:39:41 -07:00 committed by GitHub
commit e932a95d27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}
#######################################