Skip to content

Update Konflux references #1161

Update Konflux references

Update Konflux references #1161

Workflow file for this run

---
name: Reporting
on:
push:
branches:
- release-0.19
- 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Run Anchore vulnerability scanner
uses: anchore/scan-action@7037fa011853d5a11690026fb85feee79f4c946c
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@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2
with:
sarif_file: ${{ steps.scan.outputs.sarif }}