Skip to content

Commit

Permalink
ci: dependency-check reusable workflow (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
aegershman authored Jan 21, 2022
1 parent 7302d73 commit eae0ad3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/dependency-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: dependency-check

on:
workflow_dispatch: {}
schedule:
- cron: 0 18 * * *

concurrency:
group: dependency-check-${{ github.ref }}
cancel-in-progress: true

jobs:
dependency-check:
uses: openrewrite/gh-automation/.github/workflows/dependency-check-gradle.yml@main
secrets:
slack_alerts_webhook: ${{ secrets.SLACK_ALERTS_WEBHOOK }}
gradle_enterprise_access_key: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
gradle_enterprise_cache_username: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }}
gradle_enterprise_cache_password: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}

0 comments on commit eae0ad3

Please sign in to comment.