Skip to content

🌱 Add OSV scanner PR and schedule workflows #1

🌱 Add OSV scanner PR and schedule workflows

🌱 Add OSV scanner PR and schedule workflows #1

# This file is adapted from https://github.com/google/osv-scanner
name: OSV-Scanner Scan
on:
pull_request:
branches:
- 'main'
- 'release-*'
push:
branches:
- 'main'
- 'release-*'
schedule:
- cron: "12 12 * * 1"
# Restrict jobs in this workflow to have no permissions by default; permissions
# should be granted per job as needed using a dedicated `permissions` block
permissions: {}
jobs:
scan-scheduled:
permissions:
contents: read # to fetch code (actions/checkout)
security-events: write # for uploading SARIF files
if: ${{ github.event_name == 'schedule' }}
uses: "./.github/workflows/osv-scanner-pr.yml"
scan-pr:
permissions:
contents: read # to fetch code (actions/checkout)
security-events: write # for uploading SARIF files
if: ${{ github.event_name == 'pull_request' }}
uses: "./.github/workflows/osv-scanner-pr.yml"