fix(ci): make .checkov.yaml a valid YAML mapping to prevent NoneType parse error

An empty/comment-only YAML file is parsed as NoneType by PyYAML.
Checkov requires a dict; adding skip-check: [] satisfies the parser
without globally suppressing any checks.
This commit is contained in:
KaifAhmad1
2026-06-24 23:01:28 +05:30
parent b9e069301f
commit 2440c5adb4
+2 -1
View File
@@ -1,4 +1,5 @@
# Checkov configuration.
# Cloud Run false-positives (CKV_K8S_21/28/30) are suppressed via per-file
# inline checkov:skip comments in deploy/gcp/cloudrun-service.yaml rather than
# globally here, so real Kubernetes manifests are not silently exempted.
# globally here, so future real Kubernetes manifests are not silently exempted.
skip-check: []