Skip to content

fix: Missing default value for allowed principals. #4

fix: Missing default value for allowed principals.

fix: Missing default value for allowed principals. #4

Workflow file for this run

name: Trivy Analysis
on:
push:
permissions:
contents: read
security-events: write
jobs:
trivy:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v6
- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
scan-type: config
ignore-unfixed: true
skip-dirs: "**/*/.terraform"
exit-code: 1
format: sarif
output: trivy-results.sarif
- name: Parse SARIF file for annotations
if: always()
uses: jontyms/[email protected]
with:
annotation-level: notice
sarif-file: trivy-results.sarif
# When run on main, upload the SARIF file to GitHub.
- name: Upload SARIF result
if: always() && github.ref == 'refs/heads/main'
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: trivy-results.sarif