[6 Dev] Update Rosetta Common version to 10.17.1 #183
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: CVE Scanning for Maven | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- 'pom.xml' | |
- 'allow-list.xml' | |
- '.github/workflows/cve-scanning.yml' | |
pull_request: | |
paths: | |
- 'pom.xml' | |
- 'allow-list.xml' | |
- '.github/workflows/cve-scanning.yml' | |
jobs: | |
depcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/maven-build | |
with: | |
run-tests: false | |
- name: CVE scanning | |
uses: dependency-check/[email protected] | |
env: | |
JAVA_HOME: /opt/jdk | |
with: | |
project: 'Common Domain Model' | |
path: '.' | |
format: 'HTML' | |
out: 'reports' | |
args: > | |
--suppression allow-list.xml | |
--failOnCVSS 7 | |
- name: Upload results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CVE Scan Report | |
path: ${{github.workspace}}/reports |