retract v4.3.0 due to #2121 and #2113, upgrade to Go v1.23, use ristretto v2 #4099
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci-aqua-security-trivy-tests | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '.github/*' | |
- '.github/ISSUE_TEMPLATE/*' | |
- 'docs/**' | |
- 'images/**' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
security-events: write | |
jobs: | |
build: | |
name: trivy-tests | |
runs-on: warp-ubuntu-latest-x64-4x | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
scan-type: 'fs' | |
scan-ref: '.' | |
format: 'sarif' | |
output: 'trivy-results.sarif' | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: 'trivy-results.sarif' |