mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
chore: Add dependabot vulnerability notifications (#1942)
This commit is contained in:
parent
de914816f7
commit
730fcbe6e3
1 changed files with 17 additions and 0 deletions
17
.github/workflows/security-audit.yml
vendored
Normal file
17
.github/workflows/security-audit.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: Vulnerability Alerts
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 9 * * *' # Daily at 9am UTC
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
alert:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: kunalnagarco/action-cve@v1.14.23
|
||||
with:
|
||||
org: hyperdxio
|
||||
token: ${{ secrets.DEPENDABOT_NOTIF_PAT }}
|
||||
slack_webhook: ${{ secrets.SLACK_WEBHOOK_VULNERABILITIES }}
|
||||
severity: medium,high,critical
|
||||
Loading…
Reference in a new issue