bechmark: scale up RPS to test data plane CPU performance #16012
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@375a0e8ebdc98e99b02ac4338a724f5750f21213" # v2.3.1 | |
| with: | |
| scan-args: |- | |
| --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@375a0e8ebdc98e99b02ac4338a724f5750f21213" # v2.3.1 | |
| with: | |
| scan-args: |- | |
| --recursive | |
| ./ | |
| permissions: | |
| actions: read | |
| contents: read | |
| # Require writing security events to upload SARIF file to security tab | |
| security-events: write |