Merge pull request #3823 from MDeLuise/fix/datastore-message-limit #83
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: Security Scan | |
on: | |
push: | |
branches: | |
- 'develop' | |
- 'release-**' | |
env: | |
BUILD_OPTS: "" | |
MAVEN_OPTS: "-Xmx4096m" | |
jobs: | |
# Documentation: https://jeremylong.github.io/DependencyCheck/dependency-check-maven/index.html | |
owasp-dependency-check: | |
name: Owasp Dependency Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # Checks out a copy of the repository on the ubuntu-latest machine | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
cache: 'maven' | |
- uses: actions/cache@v3 # Cache local Maven repository to reuse dependencies | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- run: mvn -B ${BUILD_OPTS} -DskipTests -Psecurity-scan verify |