-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependecy-check to 9.0.4 and refactor it to own workflow
- Loading branch information
Showing
3 changed files
with
59 additions
and
7 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
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,54 @@ | ||
name: OWASP Maven Dependency Check | ||
on: | ||
schedule: | ||
- cron: '0 7 * * 0' | ||
push: | ||
branches: | ||
- 'release/**' | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
check-dependencies: | ||
name: Check dependencies | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
show-progress: false | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 21 | ||
cache: 'maven' | ||
- name: Run org.owasp:dependency-check plugin | ||
id: dependency-check | ||
continue-on-error: true | ||
run: mvn -B verify -Pdependency-check -DskipTests | ||
env: | ||
NVD_API_KEY: ${{ secrets.NVD_API_KEY }} | ||
- name: Upload report on failure | ||
if: steps.dependency-check.outcome == 'failure' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: dependency-check-report | ||
path: target/dependency-check-report.html | ||
if-no-files-found: error | ||
- name: Slack Notification on regular check | ||
if: github.event_name == 'schedule' && steps.dependency-check.outcome == 'failure' | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
SLACK_USERNAME: 'Cryptobot' | ||
SLACK_ICON: false | ||
SLACK_ICON_EMOJI: ':bot:' | ||
SLACK_CHANNEL: 'cryptomator-desktop' | ||
SLACK_TITLE: "Vulnerabilities in ${{ github.event.repository.name }} detected." | ||
SLACK_MESSAGE: "Download the <https://github.com/${{ github.repository }}/actions/run/${{ github.run_id }}|report> for more details." | ||
SLACK_FOOTER: false | ||
MSG_MINIMAL: true | ||
- name: Failing workflow on release branch | ||
if: github.event_name == 'push' && steps.dependency-check.outcome == 'failure' | ||
shell: bash | ||
run: exit 1 |
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