feat: new dashboard that shows available temperatures historical #741
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: | |
| schedule: | |
| - cron: "19 11 * * 1" | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - "**/*" | |
| - "!.github/**" # Important: Exclude PRs related to .github from auto-run | |
| - "!.github/workflows/**" # Important: Exclude PRs related to .github/workflows from auto-run | |
| - "!.github/actions/**" # Important: Exclude PRs related to .github/actions from auto-run | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - "**/*" | |
| - "!.github/**" # Important: Exclude PRs related to .github from auto-run | |
| - "!.github/workflows/**" # Important: Exclude PRs related to .github/workflows from auto-run | |
| - "!.github/actions/**" # Important: Exclude PRs related to .github/actions from auto-run | |
| merge_group: | |
| branches: ["main"] | |
| permissions: | |
| actions: read | |
| security-events: write | |
| contents: read | |
| jobs: | |
| check_paths: | |
| uses: ./.github/workflows/check_paths.yml | |
| scan-scheduled: | |
| needs: check_paths | |
| if: ( github.event_name == 'push' && needs.check_paths.outputs.githubfolder == 'false' ) || github.event_name == 'schedule' | |
| uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@fa4ff678dd5d0a4fa3d628e57af8162873e93cd6" # v2.3.8 | |
| with: | |
| # Don't fail on push to main / scheduled runs: vulnerabilities are still | |
| # reported via the SARIF upload, but the CI run stays green so it doesn't | |
| # look like a build failure on main. | |
| fail-on-vuln: false | |
| scan-args: |- | |
| -r | |
| ./ | |
| scan-pr: | |
| needs: check_paths | |
| if: ( github.event_name == 'pull_request' && needs.check_paths.outputs.githubfolder == 'false' ) || ( github.event_name == 'merge_group' && needs.check_paths.outputs.githubfolder == 'false' ) | |
| uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@fa4ff678dd5d0a4fa3d628e57af8162873e93cd6" # v2.3.8 | |
| with: | |
| # Fail on real pull_request runs (catch vulns before merge), but don't fail | |
| # merge_group runs so a merge to main isn't blocked / shown as failed. | |
| fail-on-vuln: ${{ github.event_name != 'merge_group' }} | |
| scan-args: |- | |
| -r | |
| ./ |