fix: Docker scanner workflow #24
Workflow file for this run
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: Docker Workflow | |
# This permission are helpful for pushing vulnerability in security tab | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
statuses: write | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
docker-scanner: | |
uses: clouddrove/github-shared-workflows/.github/workflows/[email protected] | |
with: | |
severity: "UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL" | |
dockerfile-path: "./.docker/Dockerfile" | |
security-upload: "true" | |
block_action: "true" |