We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6247a76 commit 31e9dceCopy full SHA for 31e9dce
.circleci/config.yml
@@ -154,6 +154,16 @@ jobs:
154
- store_artifacts:
155
path: build/reports/dependency-vulnerabilities
156
when: always
157
+ checkov-scan:
158
+ executor: helm
159
+ steps:
160
+ - checkout
161
+ - run:
162
+ name: Install checkov
163
+ command: yum install python3-pip -y && sudo python3 -m pip install -U checkov -y
164
165
+ name: Scan K8s manifest and Docker using checkov
166
+ command: checkov -d ./
167
docker_lint_build_scan_push:
168
executor: docker-git
169
steps:
@@ -285,6 +295,10 @@ workflows:
285
295
timeout: 25m
286
296
requires:
287
297
- Build
298
+ - checkov-scan:
299
+ name: Checkov IAC scan
300
+ requires:
301
+ - Build
288
302
- docker_lint_build_scan_push:
289
303
<<: *credential_context
290
304
name: Docker Lint Build Scan Push
0 commit comments