This repository was archived by the owner on Apr 18, 2025. It is now read-only.
Test Image Security Scan #1
This file contains hidden or 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: Test Image Security Scan | |
on: | |
workflow_dispatch: # Allows manual triggering through GitHub UI | |
permissions: | |
contents: read | |
security-events: write | |
actions: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
scan-kotsadm: | |
name: Scan Kotsadm | |
uses: ./.github/workflows/scan-image-grype.yml | |
with: | |
image: kotsadm/kotsadm:v1.124.11 | |
severity-cutoff: negligible | |
fail-build: false | |
timeout-minutes: 30 | |
retention-days: 90 | |
category-prefix: 'container-scan-' |