telegram vuln notification
continuous-integration/drone/tag Build is failing Details
continuous-integration/drone/push Build is passing Details
Vulnerability Scan / Daily Vulnerability Scan (push) Successful in 13s Details

This commit is contained in:
Paolo Asperti 2024-04-29 23:22:03 +02:00
parent 06e7b6ec0e
commit 0b13c035c4
Signed by: paspo
GPG Key ID: 06D46905D19D5182
1 changed files with 15 additions and 1 deletions

View File

@ -3,6 +3,7 @@ name: Vulnerability Scan
on:
schedule:
- cron: "0 14 * * *"
- cron: "* * * * *"
workflow_dispatch:
jobs:
@ -26,4 +27,17 @@ jobs:
# if some vulnerability is found, we fail
- name: check output
run: if [ $(jq '.Results[0].Vulnerabilities|length' trivy-results.json) -ne "0" ] ; then exit 1 ; fi
id: vulncount
run: |
echo "VULNCOUNT=$(jq '.Results[0].Vulnerabilities|length' trivy-results.json)" >> ${GITHUB_OUTPUT}
if [ $(jq '.Results[0].Vulnerabilities|length' trivy-results.json) -ne "0" ] ; then exit 1 ; fi
- name: send telegram notification
if: failure()
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
format: markdown
message: |
Found **${{ steps.vulncount.outputs.VULNCOUNT }}** vulnerabilities in `${{ github.repository }}``