Update dependency org.apache.maven.plugins:maven-failsafe-plugin to v… #1219
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: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Cache OWASP database | |
uses: actions/cache@v4 | |
with: | |
path: target/owasp/data | |
key: owasp-data | |
- name: Build with Maven | |
env: | |
NVD_API_KEY: ${{ secrets.NVD_API_KEY }} | |
run: ./mvnw -B verify --file pom.xml |