Vulnerability scan #3080
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: "Vulnerability scan" | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| branches: | |
| - main | |
| pull_request: | |
| paths-ignore: | |
| - 'buildspecs/**' | |
| - 'crds/**' | |
| - 'docs/**' | |
| - 'example/**' | |
| - 'hack/**' | |
| - 'hybrid-nodes-cdk/**' | |
| - 'scripts/**' | |
| - 'testdata/**' | |
| workflow_dispatch: | |
| schedule: | |
| # every day at 7am UTC | |
| - cron: '0 7 * * *' | |
| permissions: | |
| contents: read | |
| jobs: | |
| govulncheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout Repository" | |
| uses: actions/checkout@v6 | |
| with: | |
| show-progress: false | |
| - name: govulncheck | |
| uses: golang/govulncheck-action@v1 | |
| with: | |
| go-version-input: "1.26.5" | |
| check-latest: true | |
| repo-checkout: false | |
| # Known unfixed vulns: GO-2026-5622, GO-2026-5338, GO-2026-5064 (containerd v1.7.x, no fix available — requires v2.x major upgrade) |