An open API service indexing awesome lists of open source software.

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

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)