Add NVD check #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nvd-clojure | |
on: | |
schedule: | |
- cron: '0 2 * * 1' | |
pull_request: | |
jobs: | |
nvd: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Install clojure tools | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: 2.9.1 | |
- name: Cache local Maven repository # Caching NVD database can speed up the build a lot | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/project.clj') }} | |
save-always: true | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Run nvd | |
working-directory: nvd | |
env: | |
NVD_API_TOKEN: ${{ secrets.NVD_API_TOKEN }} | |
run: lein with-profile -user run -m nvd.task.check "nvd-clojure.edn" "$(cd .. && lein classpath)" | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() | |
with: | |
report_paths: 'nvd/target/nvd/dependency-check-junit.xml' | |
check_name: 'Vulnerability report' |