mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-20 11:41:26 +00:00
# Conflicts: # .github/workflows/debian.yml # .github/workflows/dependency-check.yml # .github/workflows/win-exe.yml # .idea/misc.xml # dist/linux/debian/control
20 lines
580 B
YAML
20 lines
580 B
YAML
name: OWASP Maven Dependency Check
|
|
on:
|
|
schedule:
|
|
- cron: '0 8 * * 0'
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
check-dependencies:
|
|
uses: skymatic/workflows/.github/workflows/run-dependency-check.yml@1074588008ae3326a2221ea451783280518f0366 # v3.0.1
|
|
with:
|
|
runner-os: 'ubuntu-latest'
|
|
java-distribution: 'temurin'
|
|
java-version: 25
|
|
secrets:
|
|
nvd-api-key: ${{ secrets.NVD_API_KEY }}
|
|
ossindex-username: ${{ secrets.OSSINDEX_USERNAME }}
|
|
ossindex-token: ${{ secrets.OSSINDEX_API_TOKEN }}
|
|
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}
|