fix: initial fetch timed out for type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment #23151
Workflow file for this run
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: OSV-Scanner | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| merge_group: | |
| branches: | |
| - "main" | |
| push: | |
| branches: | |
| - "main" | |
| schedule: | |
| - cron: '44 15 * * 5' | |
| permissions: | |
| contents: read | |
| jobs: | |
| scan-scheduled: | |
| if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }} | |
| uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@9fd1bcce27f67e3bd819a0a7620e332803dc43bc" # main, pending release > v2.3.8 (incl. osv-scanner-action#130) | |
| with: | |
| scan-args: |- | |
| --config tools/osv-scanner/vulnerability-scan-config.toml | |
| --recursive | |
| ./ | |
| permissions: | |
| actions: read | |
| contents: read | |
| # Require writing security events to upload SARIF file to security tab | |
| security-events: write | |
| scan-pr: | |
| if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
| uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@9fd1bcce27f67e3bd819a0a7620e332803dc43bc" # main, pending release > v2.3.8 (incl. osv-scanner-action#130) | |
| with: | |
| scan-args: |- | |
| --config tools/osv-scanner/vulnerability-scan-config.toml | |
| --recursive | |
| ./ | |
| permissions: | |
| actions: read | |
| contents: read | |
| # Require writing security events to upload SARIF file to security tab | |
| security-events: write |