-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate osv-scanner workflows so that the action for scheduled and p…
…ush will not appear on PRs (#469) Avoid showing irrelevant action on PRs: ![image](https://github.com/user-attachments/assets/4310213a-7b3d-4be2-bf15-21d56ccb3bb3)
- Loading branch information
Showing
2 changed files
with
37 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
./ |