Skip to content

Bump the github-actions group with 2 updates #790

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #790

Workflow file for this run

---
name: Reporting
on:
push:
branches:
- release-0.20
- 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@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Run Anchore vulnerability scanner
uses: anchore/scan-action@7c05671ae9be166aeb155bad2d7df9121823df32
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@dd746615b3b9d728a6a37ca2045b68ca76d4841a
with:
sarif_file: ${{ steps.scan.outputs.sarif }}