fix(deps): update k8s.io/utils digest to 24370be #1935
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
release: | |
types: [published] | |
tags: | |
- v* | |
jobs: | |
trivy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Trivy vulnerability scanner in fs mode | |
uses: aquasecurity/[email protected] | |
with: | |
scan-type: 'fs' | |
scan-ref: '.' | |
exit-code: '1' | |
- name: Run Trivy vulnerability scanner in config mode | |
uses: aquasecurity/[email protected] | |
with: | |
scan-type: 'config' | |
scan-ref: '.' | |
exit-code: '1' | |
skip-files: kind_registry.yaml | |
skip-dirs: config,demo |