Skip to content

feat(sage-monorepo): create "sage" product space (ARCH-323) (#2907) #2607

feat(sage-monorepo): create "sage" product space (ARCH-323) (#2907)

feat(sage-monorepo): create "sage" product space (ARCH-323) (#2907) #2607

Workflow file for this run

name: Scan Git repo
on:
push:
branches:
- main
pull_request:
schedule:
# Every Thursday at 7:29 PM
- cron: 29 19 * * 4
workflow_dispatch:
jobs:
trivy:
name: Trivy
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@0.28.0
env:
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db:2
TRIVY_JAVA_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-java-db:1
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'sarif'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'
limit-severities-for-sarif: true
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'
category: 'trivy-repo'