Scan Image #61
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: Scan Image | |
on: | |
workflow_dispatch: | |
jobs: | |
scan-from-registry: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Scan dummy-vuln-app from registry | |
id: scan | |
uses: ./ | |
with: | |
# Tag of the image to analyse | |
image-tag: sysdiglabs/dummy-vuln-app:latest | |
# API token for Sysdig Scanning auth | |
sysdig-secure-token: ${{ secrets.KUBELAB_SECURE_API_TOKEN }} | |
stop-on-failed-policy-eval: true | |
stop-on-processing-error: true | |
severity-at-least: medium | |
- name: Upload SARIF file | |
if: success() || failure() # Upload results regardless previous step fails | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ github.workspace }}/sarif.json | |
filtered-scan-from-registry: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Scan dummy-vuln-app from registry | |
id: scan | |
uses: ./ | |
with: | |
# Tag of the image to analyse | |
image-tag: sysdiglabs/dummy-vuln-app:latest | |
# API token for Sysdig Scanning auth | |
sysdig-secure-token: ${{ secrets.KUBELAB_SECURE_API_TOKEN }} | |
stop-on-failed-policy-eval: true | |
stop-on-processing-error: true | |
severity-at-least: medium | |
group-by-package: true | |
- name: Upload SARIF file | |
if: success() || failure() # Upload results regardless previous step fails | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ github.workspace }}/sarif.json | |
macos-scan-from-registry: | |
runs-on: macos-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Scan dummy-vuln-app from registry | |
id: scan | |
uses: ./ | |
with: | |
# Tag of the image to analyse | |
image-tag: sysdiglabs/dummy-vuln-app:latest | |
# API token for Sysdig Scanning auth | |
sysdig-secure-token: ${{ secrets.KUBELAB_SECURE_API_TOKEN }} | |
stop-on-failed-policy-eval: true | |
stop-on-processing-error: true | |
- name: Upload SARIF file | |
if: success() || failure() # Upload results regardless previous step fails | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ github.workspace }}/sarif.json | |
standalone-scan-from-registry: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Donate MainDB from scan | |
id: donnor-scan | |
uses: ./ | |
with: | |
# Tag of the image to analyse | |
image-tag: sysdiglabs/dummy-vuln-app:latest | |
# API token for Sysdig Scanning auth | |
sysdig-secure-token: ${{ secrets.KUBELAB_SECURE_API_TOKEN }} | |
stop-on-failed-policy-eval: false | |
stop-on-processing-error: true | |
skip-summary: true | |
- name: Scan dummy-vuln-app from registry | |
id: scan | |
uses: ./ | |
with: | |
# Tag of the image to analyse | |
image-tag: sysdiglabs/dummy-vuln-app:latest | |
# API token for Sysdig Scanning auth | |
#sysdig-secure-token: ${{ secrets.KUBELAB_SECURE_API_TOKEN }} | |
stop-on-failed-policy-eval: true | |
stop-on-processing-error: true | |
standalone: true | |
- name: Upload SARIF file | |
if: success() || failure() # Upload results regardless previous step fails | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ github.workspace }}/sarif.json |