Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
fdevans marked this conversation as resolved.
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:
Expand Down