Bump the dependencies group across 1 directory with 12 updates #444
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: Get Date | |
id: get-date | |
run: | | |
echo "date=$(/bin/date -u "+%Y-%m-%dT%H:%M:%S")" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Cache maven repository | |
uses: actions/cache@v4 | |
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@v4 | |
with: | |
path: | | |
~/.m2/repository/org/owasp/dependency-check-data | |
key: ${{ runner.os }}-maven-owasp-cvedb-${{ steps.get-date.outputs.date }} | |
restore-keys: ${{ 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@v4 | |
with: | |
path: | | |
~/.m2/repository/org/owasp/dependency-check-data | |
key: ${{ runner.os }}-maven-owasp-cvedb-${{ steps.get-date.outputs.date }} | |
- 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 | |