Skip to content

Commit

Permalink
Update scan and remove some pieces
Browse files Browse the repository at this point in the history
  • Loading branch information
megg-pd authored and gschueler committed Dec 19, 2024
1 parent 1e46af5 commit c0b8bf9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ version: 2.1

orbs:
snyk: snyk/[email protected] # https://circleci.com/developer/orbs/orb/snyk/snyk
git: pagerduty/[email protected] # https://circleci.com/developer/orbs/orb/pagerduty/git (public PD orb)

jobs:
build:
Expand Down Expand Up @@ -54,19 +53,18 @@ jobs:
steps:
- checkout
- setup_remote_docker
- git/rebase_on_main
- run:
name: 'Gradle build without running the tests'
command: './gradlew assemble' # pull in dependencies but do not run tests
# All Snyk commands below should be identical to any Snyk scan ran using our Snyk orb: https://github.com/PagerDuty/snyk-circleci-orb/blob/main/src/commands/scan.yml
- snyk/install
- run: snyk config set org='rundeck-core-mtgfa3XPaKGbFtHj9aRXhg' # this will need to be updated if the project changes owners
- run: snyk monitor --all-projects --detection-depth=10 --scan-all-unmanaged # run monitor first to push results to webui
- run: snyk test --severity-threshold=low --all-projects --detection-depth=10 --scan-all-unmanaged # will fail step if any results are found
- run: snyk test --severity-threshold=high --all-projects --detection-depth=10 --scan-all-unmanaged # will fail step if any results are found

workflows:
version: 2
test_and_publish:
test_and_build:
jobs:
- snyk_test:
context:
Expand Down

0 comments on commit c0b8bf9

Please sign in to comment.