Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garethr/snyk-orb
A CircleCI Orb for using Snyk in your builds
https://github.com/garethr/snyk-orb
circleci circleci-orbs snyk
Last synced: 28 days ago
JSON representation
A CircleCI Orb for using Snyk in your builds
- Host: GitHub
- URL: https://github.com/garethr/snyk-orb
- Owner: garethr
- License: mit
- Created: 2019-07-06T15:21:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-08T12:57:37.000Z (over 5 years ago)
- Last Synced: 2024-12-11T15:56:16.128Z (about 1 month ago)
- Topics: circleci, circleci-orbs, snyk
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Use Snyk with Circle CI
[![CircleCI](https://circleci.com/gh/garethr/snyk-orb.svg?style=svg)](https://circleci.com/gh/garethr/snyk-orb)
Using this Orb requires a [Snyk account](https://snyk.io/signup) and setting the `SNYK_TOKEN` environment variable in the relevant build.
```yaml
version: 2.1
orbs:
snyk: garethr/[email protected]
jobs:
build:
docker:
- image: "circleci/buildpack-deps:stretch"
steps:
- checkout
- snyk/install_snyk
- snyk/check_code_with_snyk
```See the [full documentation on the Orb Registry](https://circleci.com/orbs/registry/orb/garethr/snyk).