https://github.com/nnichols/clojure-vulnerability-check-action
A simple GitHub Actions to scan for vulnerable dependencies
https://github.com/nnichols/clojure-vulnerability-check-action
clojure github-actions
Last synced: about 1 month ago
JSON representation
A simple GitHub Actions to scan for vulnerable dependencies
- Host: GitHub
- URL: https://github.com/nnichols/clojure-vulnerability-check-action
- Owner: nnichols
- License: mit
- Created: 2021-03-17T17:30:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-26T11:23:16.000Z (over 2 years ago)
- Last Synced: 2024-05-01T22:18:28.955Z (over 1 year ago)
- Topics: clojure, github-actions
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Clojure Vulnerability Check Action
A simple GitHub Actions to scan for vulnerable dependencies
This action uses [lein-nvd](https://github.com/rm-hull/lein-nvd) to check dependencies.
## Sample Usage
```yml
name: Clojure Dependency Checking
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Latest Commit
uses: actions/checkout@v1
- name: Check deps
uses: nnichols/clojure-vulnerability-check-action@v1
```
If any vulnerable jars are detected on the classpath, the job will return a failing status.
## Licensing
Copyright © 2021-2022 [Nick Nichols](https://nnichols.github.io/)
Distributed under the [MIT License](https://github.com/nnichols/clojure-vulnerability-check-action/blob/master/LICENSE)