diff --git a/.github/workflows/check-for-vulnerabilities.yml b/.github/workflows/check-for-vulnerabilities.yml new file mode 100644 index 00000000..d56e2261 --- /dev/null +++ b/.github/workflows/check-for-vulnerabilities.yml @@ -0,0 +1,15 @@ +name: 'Check for Vulnerabilities' + +on: + schedule: + - cron: '0 */6 * * *' # every 6 hours + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: kunalnagarco/action-cve@v1.12.36 + with: + token: ${{ secrets.VULN_CHECK_PERSONAL_ACCESS_TOKEN }} + slack_webhook: ${{ secrets.VULN_CHECK_SLACK_WEBHOOK }} + severity: high,critical