Dependabot Alerts Action #474
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Dependabot Alerts Action' | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '00 00 * * *' # 00 00 indicates midnight--0 minutes and 0 hours--and the *s mean every day of every month | |
push: | |
branches: | |
- main | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
# X.X.X - Latest version available at: https://github.com/kunalnagarco/action-cve/releases | |
- uses: kunalnagarco/[email protected] | |
with: | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
slack_webhook: ${{ secrets.SLACK_WEBHOOK }} | |
count: 10 |