Skip to content

Bump the github-actions group with 2 updates #671

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #671

Workflow file for this run

---
name: Reporting
on:
push:
branches:
- release-0.17
- 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@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Run Anchore vulnerability scanner
uses: anchore/scan-action@bc9adf64917dd9444d6cf4dd68620c34ca3a5f69
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@883d8588e56d1753a8a58c1c86e88976f0c23449
with:
sarif_file: ${{ steps.scan.outputs.sarif }}