Skip to content

Add Opportunities, Thrive, Blog, and 2026 design system #2234

Add Opportunities, Thrive, Blog, and 2026 design system

Add Opportunities, Thrive, Blog, and 2026 design system #2234

Workflow file for this run

name: Trivy Scanner
on:
push:
branches:
- main
- master
- dev
- develop
pull_request:
workflow_dispatch:
permissions:
actions: read
contents: read
security-events: write
jobs:
trivy-scan:
name: Trivy SAST and SCA
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Trivy scanner in repo mode
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
version: "v0.73.0"
scan-type: "fs"
scan-ref: "."
ignore-unfixed: true
format: "sarif"
output: "trivy-results.sarif"
severity: "CRITICAL,HIGH,UNKNOWN"
limit-severities-for-sarif: true
scanners: vuln,secret,misconfig,license
trivyignores: ".trivyignore.yaml"
github-pat: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Trivy scan results to GitHub Security tab
if: always()
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: "trivy-results.sarif"