Bump the dependencies group with 2 updates #387
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: Maven Build | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- develop-* | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: Cache maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-maven | |
- name: Restore CVD Database from Cache | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
~/.m2/repository/org/owasp/dependency-check-data | |
key: ${{ runner.os }}-maven-owasp-cvedb | |
- name: Update CVD Database | |
env: | |
OWASP_OSS_INDEX_USERNAME: ${{ secrets.OWASP_OSS_INDEX_USERNAME }} | |
OWASP_OSS_INDEX_APIKEY: ${{ secrets.OWASP_OSS_INDEX_APIKEY }} | |
NIST_NVD_API_KEY: ${{ secrets.NIST_NVD_API_KEY }} | |
run: | | |
mvn -B -DnvdApiDelay=6000 --settings maven-ci-settings.xml org.owasp:dependency-check-maven:update-only | |
- name: Save CVD Database to Cache | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
~/.m2/repository/org/owasp/dependency-check-data | |
key: ${{ runner.os }}-maven-owasp-cvedb | |
- name: Build with Maven | |
env: | |
OWASP_OSS_INDEX_USERNAME: ${{ secrets.OWASP_OSS_INDEX_USERNAME }} | |
OWASP_OSS_INDEX_APIKEY: ${{ secrets.OWASP_OSS_INDEX_APIKEY }} | |
NIST_NVD_API_KEY: ${{ secrets.NIST_NVD_API_KEY }} | |
run: mvn -B install --file pom.xml --settings maven-ci-settings.xml | |