Remove unused property from scorecard_enabled rule #64
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: Trivy Scan | |
on: | |
pull_request: | |
jobs: | |
trivy-code-security-scan: | |
runs-on: ubuntu-latest | |
name: Trivy | |
steps: | |
- name: Checkout | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4 | |
- name: Security Scan | |
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # 0.24.0 | |
with: | |
scan-type: 'fs' | |
scanners: vuln,secret | |
exit-code: 1 | |
ignore-unfixed: true |