From 40cd9fdf0bea2f7ba4f824957ef2d01413462b3f Mon Sep 17 00:00:00 2001 From: Forrest Evans Date: Mon, 15 Sep 2025 15:26:51 -0700 Subject: [PATCH] add all-projects and add monitor for file check --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8625dc1..b174942 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,14 +22,15 @@ jobs: name: Run Snyk monitors to track vulnerabilities on main only command: | if [ "$CIRCLE_BRANCH" = "main" ]; then - snyk monitor --detection-depth=10 || true + snyk monitor --all-projects --detection-depth=10 + snyk monitor --file=buildSrc/build.gradle --package-manager=gradle else echo "Skipping monitor for non-main branch - no data sent to dashboard" fi - run: name: Test for vulnerabilities command: | - snyk test --detection-depth=10 || true + snyk test --all-projects --detection-depth=10 || true snyk test --file=buildSrc/build.gradle --package-manager=gradle || true workflows: