Skip to content

Have admin access be priority over resource role on challenge, and fix visibility of checkpoint submissions that fail screening #96

Have admin access be priority over resource role on challenge, and fix visibility of checkpoint submissions that fail screening

Have admin access be priority over resource role on challenge, and fix visibility of checkpoint submissions that fail screening #96

Workflow file for this run

name: Trivy Scanner
permissions:
contents: read
security-events: write
on:
push:
branches:
- main
- dev
pull_request:
jobs:
trivy-scan:
name: Use Trivy
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Trivy scanner in repo mode
uses: aquasecurity/[email protected]
with:
scan-type: "fs"
ignore-unfixed: true
format: "sarif"
output: "trivy-results.sarif"
severity: "CRITICAL,HIGH,UNKNOWN"
scanners: vuln,secret,misconfig,license
github-pat: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: "trivy-results.sarif"