Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test Snyk-Vuln-Scanner Orb with dev Tag #67

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
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
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
version: 2.1

orbs:
snyk-vuln-scanner: cci-internal/snyk-vuln-scanner@dev:358b903c2dbd7ddc1a8f2e17d398f0908724f44c

jobs:
clj-kondo:
docker:
Expand Down Expand Up @@ -50,6 +53,22 @@ jobs:
- run:
name: Publish to clojars
command: lein deploy
snyk-test:
docker:
- image: cimg/circleci/openjdk
steps:
- checkout
- restore_cache:
keys:
- clj-jars-v2-{{ checksum "project.clj" }}
- clj-jars-v2-
# - run:
# name: Download dependencies
# command: lein deps
# - run:
# name: Pom
# command: lein pom


workflows:
version: 2
Expand All @@ -69,3 +88,8 @@ workflows:
only: /.*/
branches:
ignore: /.*/
snyk-test:
jobs:
- snyk-vuln-scanner/vuln-scan:
context: [org-global, github-readonly]
debug: true