Bump org.owasp:dependency-check-maven from 8.4.3 to 9.0.0 #269
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for tabs | |
run: | | |
find "(" -name "*.java" -or -name "*.xml" -or -name "*.yaml" -or -name "*.yml" -or -name "*.txt" -or -name "*.md" ")" -exec grep -Pl "\t" {} \; > matches.txt | |
grep "" matches.txt && exit 1 || echo "No tab found!" | |
- name: Check for CRLF | |
run: | | |
find "(" -name "*.java" -or -name "*.xml" -or -name "*.yaml" -or -name "*.yml" -or -name "*.txt" -or -name "*.md" ")" -exec grep -Plz "\r\n" {} \; > matches.txt | |
grep "" matches.txt && exit 1 || echo "No CRLF found!" | |
- name: Check for trailing spaces | |
run: | | |
find "(" -name "*.java" -or -name "*.xml" -or -name "*.yaml" -or -name "*.yml" -or -name "*.txt" -or -name "*.md" ")" -exec grep -Pl " $" {} \; > matches.txt | |
grep "" matches.txt && exit 1 || echo "No trailing space found!" | |
- name: Clone open-vulnerability-clients fork | |
run: git clone https://github.com/maddie480/Open-Vulnerability-Project.git | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Build open-vulnerability-clients fork | |
run: | | |
cd Open-Vulnerability-Project/open-vulnerability-clients | |
../gradlew publishToMavenLocal --info | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
env: | |
NVD_API_KEY: ${{ secrets.NVD_API_KEY }} | |
run: mvn -B verify -Prelease --file pom.xml | |
- name: Upload target folder as artifact | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: target | |
path: target |