https://github.com/phylum-dev/phylum-orb
CircleCI Phylum Orb
https://github.com/phylum-dev/phylum-orb
Last synced: about 2 months ago
JSON representation
CircleCI Phylum Orb
- Host: GitHub
- URL: https://github.com/phylum-dev/phylum-orb
- Owner: phylum-dev
- License: mit
- Created: 2023-11-13T17:29:56.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-14T21:07:59.000Z (about 2 years ago)
- Last Synced: 2025-01-20T09:46:10.048Z (about 1 year ago)
- Language: Rust
- Size: 26.4 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phylum CircleCI Orb
The Phylum Orb allows for automatic analysis of your lockfiles and manifests for
vulnerable dependencies.
## Usage
You can find the Phylum Orb on the [CircleCI Orb Registry Page].
[CircleCI Orb Registry Page]: https://circleci.com/developer/orbs/orb/phylum-dev/phylum
To use the Phylum Orb, add your Phylum API token as an environment variable
named `PHYLUM_API_KEY` and add the following job to your workflow:
```yml
version: 2.1
orbs:
phylum: phylum-dev/phylum@1.0.0
workflows:
test:
jobs:
- phylum/analyze:
api_key: ${PHYLUM_API_KEY}
```