Fixed contributors and repository entries #683
Workflow file for this run
This file contains hidden or 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: OWASP Dependency Check | |
| on: | |
| push: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 10 * * 1' | |
| jobs: | |
| owasp-dependency-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache M2 Repository | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: maven- | |
| - name: Cache OWASP Dependency-Check NVD data | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository/org/owasp/dependency-check-data | |
| key: owasp-dependency-check-${{ github.run_id }} | |
| restore-keys: owasp-dependency-check- | |
| - name: OWASP Dependency Check | |
| run: mvn clean --batch-mode --update-snapshots verify -Pdependency-check -Dnvd.api.key=${{ secrets.NVD_API_KEY }} | |
| - name: Upload Test results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: OWASP Dependency Check report | |
| path: target |