-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Integrate osv-scanner workflow #241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| # Copyright 2024 Google LLC | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| name: OSV-Scanner | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: ["main"] | ||
| merge_group: | ||
| types: [checks_requested] | ||
| schedule: | ||
| - cron: "12 12 * * 1" | ||
| push: | ||
| branches: ["main"] | ||
|
|
||
| permissions: | ||
| # Required to upload SARIF file to CodeQL. See: https://github.com/github/codeql-action/issues/2117 | ||
| actions: read | ||
| # Require writing security events to upload SARIF file to security tab | ||
| security-events: write | ||
| # Read commit contents | ||
| 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@3adb4b14a2b0623876d18d863a498b785fb3752d" # v2.3.8 | ||
| with: | ||
| # Example of specifying custom arguments | ||
| scan-args: |- | ||
| --include-git-root | ||
| -r | ||
| ./ | ||
| 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@3adb4b14a2b0623876d18d863a498b785fb3752d" # v2.3.8 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The exact current-head pull_request run 29359004942 still concludes startup_failure with zero jobs. This reusable-workflow call therefore performs no scan on PRs. Please allow it at repository or organization level, or inline the scan steps, and demonstrate a successful OSV-Scanner run before merge. |
||
| with: | ||
| # Example of specifying custom arguments | ||
| scan-args: |- | ||
| --include-git-root | ||
| -r | ||
| ./ | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
pull_requestrun of this workflow on the current head concludedstartup_failurewith 0 jobs (run 29040163397). The YAML is valid and both reusable workflows exist at pinned SHA3adb4b1, so this is most likely the org/repo Actions policy not allowinggoogle/osv-scanner-actionreusable workflows. Please get the action allowlisted (or inline the scan steps) and show a green OSV-Scanner run on this PR — as written, this check will fail on every PR without performing any scan.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rng1995
this is a sample run of the pr workflow in my fork showing a green run: https://github.com/smoy/SkillSpector/actions/runs/29359037710/job/87174081468?pr=9
Can you handle the action allowlisted?