Scan vulnerabilities #2887
This file contains hidden or 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: Scan vulnerabilities | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Scan Go vulnerabilities | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Run Trivy vulnerability scanner and create GitHub issues | |
| uses: knqyf263/trivy-issue-action@4466f52d1401b66dd2a2ab9e0c40cddc021829ec # v0.0.6 | |
| with: | |
| assignee: knqyf263 | |
| severity: CRITICAL | |
| skip-dirs: integration,examples,pkg | |
| label: kind/security | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |