From c89320fdddc3aaa55b4443fc2f9a8a10d75442ce Mon Sep 17 00:00:00 2001 From: Alexsander Hamir Date: Mon, 5 Jan 2026 16:01:19 -0800 Subject: [PATCH] Fix: Add secret detection scan to security scans execution - Add run_secret_detection() call to main() function - Install ggshield upfront for consistency with other tools - Secret detection scans will now run as part of the security scan workflow --- ci_cd/security_scans.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci_cd/security_scans.sh b/ci_cd/security_scans.sh index 3426955181a..db7d268d33b 100755 --- a/ci_cd/security_scans.sh +++ b/ci_cd/security_scans.sh @@ -207,6 +207,10 @@ main() { echo "Installing security scanning tools..." install_trivy install_grype + install_ggshield + + echo "Running secret detection scans..." + run_secret_detection echo "Running filesystem vulnerability scans..." run_trivy_scans