-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f927eb
commit dd11330
Showing
3 changed files
with
72 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: "OWASP Dependency Check" | ||
|
||
on: | ||
|
||
schedule: | ||
- cron: '0 3 * * 0' | ||
|
||
jobs: | ||
owasp: | ||
name: OWASP Dependency Check Report | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'quarkusio/quarkus' | ||
|
||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
ref: main | ||
- name: Setup Java JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
|
||
|
||
- name: Build Java | ||
run: ./mvnw -B --settings .github/mvn-settings.xml -Dquickly-ci install | ||
|
||
- name: Perform OWASP Dependency Check Report | ||
run: ./mvnw -Dowasp-report | ||
|
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 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