diff --git a/.github/workflows/osv-scanner.yml b/.github/workflows/osv-scanner-pr.yml similarity index 67% rename from .github/workflows/osv-scanner.yml rename to .github/workflows/osv-scanner-pr.yml index 15eec12739..e9621ef818 100644 --- a/.github/workflows/osv-scanner.yml +++ b/.github/workflows/osv-scanner-pr.yml @@ -9,17 +9,13 @@ # For more examples and options, including how to ignore specific vulnerabilities, # see https://google.github.io/osv-scanner/github-action/ -name: OSV-Scanner +name: OSV-Scanner-PR on: pull_request: branches: [ "main" ] merge_group: branches: [ "main" ] - schedule: - - cron: '29 23 * * 5' - push: - branches: [ "main" ] permissions: # Require writing security events to upload SARIF file to security tab @@ -30,17 +26,7 @@ permissions: actions: read jobs: - scan-scheduled: - if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }} - uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@ba0b4d196d231340e0ae94ae00933c8be0984192" # v1.7.4 - with: - # Example of specifying custom arguments - scan-args: |- - -r - --skip-git - ./ 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@ba0b4d196d231340e0ae94ae00933c8be0984192" # v1.7.4 with: # Example of specifying custom arguments diff --git a/.github/workflows/osv-scanner-scheduled-push.yml b/.github/workflows/osv-scanner-scheduled-push.yml new file mode 100644 index 0000000000..9cfbb6914b --- /dev/null +++ b/.github/workflows/osv-scanner-scheduled-push.yml @@ -0,0 +1,36 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# A sample workflow which sets up periodic OSV-Scanner scanning for vulnerabilities, +# in addition to a PR check which fails if new vulnerabilities are introduced. +# +# For more examples and options, including how to ignore specific vulnerabilities, +# see https://google.github.io/osv-scanner/github-action/ + +name: OSV-Scanner-Schedule-Push + +on: + schedule: + - cron: '29 23 * * 5' + push: + branches: [ "main" ] + +permissions: + # Require writing security events to upload SARIF file to security tab + security-events: write + # Read commit contents + contents: read + # Read permisson for osv-scanner-reusable. + actions: read + +jobs: + scan-schedule-push: + uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@ba0b4d196d231340e0ae94ae00933c8be0984192" # v1.7.4 + with: + # Example of specifying custom arguments + scan-args: |- + -r + --skip-git + ./