Skip to content

AE-2264: Fix NVD tool by manually updating dependency-check-core #35

AE-2264: Fix NVD tool by manually updating dependency-check-core

AE-2264: Fix NVD tool by manually updating dependency-check-core #35

Workflow file for this run

name: nvd-clojure
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
nvd:
runs-on: ubuntu-latest
defaults:
run:
working-directory: etp-core/etp-backend
container:
image: clojure:openjdk-17-tools-deps
steps:
- uses: actions/checkout@v4
- name: Run nvd
env:
NVD_API_TOKEN: ${{ secrets.NVD_API_TOKEN }}
run: ./nvd.sh
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: '**/etp-core/etp-backend/target/nvd/dependency-check-junit.xml'
check_name: 'Vulnerability report'