Probely high vulnerability checker #19
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: Probely high vulnerability checker | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 9 * * 1' # every Monday at 9am | |
jobs: | |
scheduled-job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
uses: VaultVulp/[email protected] | |
with: | |
command: install # Install all dependencies | |
- name: Check for Probely high vulnerabilities (Slackbot) | |
uses: VaultVulp/[email protected] | |
with: | |
command: run ./probely_high_vulnerability_slackbot.py | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
PROBELY_API_TOKEN: ${{ secrets.PROBELY_API_TOKEN }} |