dependency-check.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. name: OWASP Maven Dependency Check
  2. on:
  3. schedule:
  4. - cron: '0 7 * * 0'
  5. workflow_dispatch:
  6. jobs:
  7. check-dependencies:
  8. name: Check dependencies
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v4
  12. with:
  13. show-progress: false
  14. - name: Setup Java
  15. uses: actions/setup-java@v4
  16. with:
  17. distribution: 'temurin'
  18. java-version: 21
  19. cache: 'maven'
  20. - name: Cache NVD DB
  21. uses: actions/cache@v3
  22. with:
  23. path: ~/.m2/repository/org/owasp/dependency-check-data/
  24. key: dependency-check-${{ github.run_id }}
  25. restore-keys: |
  26. dependency-check
  27. env:
  28. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5
  29. - name: Run org.owasp:dependency-check plugin
  30. id: dependency-check
  31. continue-on-error: true
  32. run: mvn -B verify -Pdependency-check -DskipTests
  33. env:
  34. NVD_API_KEY: ${{ secrets.NVD_API_KEY }}
  35. - name: Upload report on failure
  36. if: steps.dependency-check.outcome == 'failure'
  37. uses: actions/upload-artifact@v3
  38. with:
  39. name: dependency-check-report
  40. path: target/dependency-check-report.html
  41. if-no-files-found: error
  42. - name: Slack Notification on regular check
  43. if: github.event_name == 'schedule' && steps.dependency-check.outcome == 'failure'
  44. uses: rtCamp/action-slack-notify@v2
  45. env:
  46. SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
  47. SLACK_USERNAME: 'Cryptobot'
  48. SLACK_ICON: false
  49. SLACK_ICON_EMOJI: ':bot:'
  50. SLACK_CHANNEL: 'cryptomator-desktop'
  51. SLACK_TITLE: "Vulnerabilities in ${{ github.event.repository.name }} detected."
  52. SLACK_MESSAGE: "Download the <https://github.com/${{ github.repository }}/actions/run/${{ github.run_id }}|report> for more details."
  53. SLACK_FOOTER: false
  54. MSG_MINIMAL: true