Skip to content

chore: run cargo fmt (#457) #293

chore: run cargo fmt (#457)

chore: run cargo fmt (#457) #293

Workflow file for this run

name: trivy scans
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/trivy-scans.yml'
- '.trivyignore'
permissions:
contents: read
jobs:
trivy-fs-scan:
if: github.repository == 'open-telemetry/opentelemetry-network-build-tools'
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Run trivy filesystem scan
uses: aquasecurity/trivy-action@b6643a29fecd7f34b3597bc6acb0a98b03d33ff8 # 0.33.1
with:
scan-type: 'fs'
scan-ref: '.'
skip-dirs: 'docs,cmake,ext'
format: 'table'
exit-code: '1'
severity: 'CRITICAL,HIGH'
ignore-unfixed: true
vuln-type: 'os,library'
timeout: 10m