Skip to content

Update K8s versions tested in E2E #40

Update K8s versions tested in E2E

Update K8s versions tested in E2E #40

Workflow file for this run

---
name: Reporting
on:
push:
branches:
- devel
- release-*
permissions: {}
jobs:
vulnerability-scan:
name: Vulnerability Scanning
if: github.repository_owner == 'submariner-io'
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Check out the repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Run Anchore vulnerability scanner
uses: anchore/scan-action@896d5f410043987c8fe18f60d91bf199e436840c
id: scan
with:
path: "."
fail-build: false
- name: Show Anchore scan SARIF report
run: cat ${{ steps.scan.outputs.sarif }}
- name: Upload Anchore scan SARIF report
uses: github/codeql-action/upload-sarif@407ffafae6a767df3e0230c3df91b6443ae8df75
with:
sarif_file: ${{ steps.scan.outputs.sarif }}