. šµš¼ Trivy scanner for docker #1431
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: . šµš¼ Trivy scanner for docker | |
on: | |
schedule: | |
# Scheduled to run at 8 a.m on every day-of-week from Monday through Friday. | |
- cron: '0 8 * * 1-5' | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Tag to scan' | |
required: false | |
default: 'latest' | |
jobs: | |
docker-trivy: | |
uses: ./.github/workflows/component_trivy.yml | |
secrets: | |
slack_webhook: ${{ secrets.CAOS_SLACK_WEBHOOK }} | |
with: | |
tag: "${{ github.event.inputs.tag }}" | |
severity: "CRITICAL,HIGH" |