-
Notifications
You must be signed in to change notification settings - Fork 730
chore: import scorecards next to deps.dev data from openssf dataset (CM-1227) #4196
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c8bfec8
chore: import scorecards next to deps.dev data from openssf dataset
themarolt a4f9f13
fix: linting errors
themarolt 8c53592
Merge branch 'main' into feat/openssf-scorecard-ingest-CM-1227
themarolt 75bedbc
chore: remove the packages worker binary that was there as a placeholder
themarolt d86d554
fix: comments
themarolt 8d2d565
Merge branch 'main' into feat/openssf-scorecard-ingest-CM-1227
themarolt c210a3a
fix: remove some deprecated scripts
themarolt efce1f8
fix: comments
themarolt 42f4871
Merge remote-tracking branch 'origin/main' into feat/openssf-scorecar…
themarolt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
11 changes: 11 additions & 0 deletions
11
backend/src/osspckgs/migrations/V1781074345__add-scorecard-job-kinds.sql
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| -- Extend osspckgs_ingest_jobs.job_kind CHECK constraint to include scorecard kinds. | ||
| -- Required for ingestScorecard workflow (CM-1227). | ||
| ALTER TABLE osspckgs_ingest_jobs | ||
| DROP CONSTRAINT osspckgs_ingest_jobs_job_kind_check, | ||
| ADD CONSTRAINT osspckgs_ingest_jobs_job_kind_check CHECK (job_kind IN ( | ||
| 'packages', 'versions', 'package_dependencies', | ||
| 'repos', 'package_repos', | ||
| 'advisories', 'advisory_packages', | ||
| 'dependent_counts', | ||
| 'scorecard_repos', 'scorecard_checks' | ||
| )); |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| DOCKERFILE="./services/docker/Dockerfile.packages" | ||
| CONTEXT="../" | ||
| REPO="sjc.ocir.io/axbydjxa5zuh/packages" | ||
| SERVICES="packages github-repos-enricher deps-dev-ingest npm-worker maven-worker osv-worker" | ||
| SERVICES="github-repos-enricher bq-dataset-ingest npm-worker maven-worker osv-worker" |
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
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
21 changes: 21 additions & 0 deletions
21
services/apps/packages_worker/src/scorecard/queries/scorecardSql.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import { SCORECARD_DATASET } from '../../deps-dev/config' | ||
|
|
||
| export const SCORECARD_REPOS_SQL = ` | ||
| SELECT | ||
| LOWER(CONCAT('https://', repo.name)) AS repo_url, | ||
|
themarolt marked this conversation as resolved.
Outdated
|
||
| score, | ||
| date AS scanned_at | ||
| FROM \`${SCORECARD_DATASET}.scorecard-v2_latest\` | ||
| WHERE repo.name IS NOT NULL | ||
| ` | ||
|
themarolt marked this conversation as resolved.
|
||
|
|
||
| export const SCORECARD_CHECKS_SQL = ` | ||
| SELECT | ||
| LOWER(CONCAT('https://', r.repo.name)) AS repo_url, | ||
|
themarolt marked this conversation as resolved.
Outdated
|
||
| c.name AS check_name, | ||
| c.score AS check_score, | ||
| c.reason AS check_reason | ||
| FROM \`${SCORECARD_DATASET}.scorecard-v2_latest\` r, | ||
| UNNEST(r.checks) AS c | ||
| WHERE r.repo.name IS NOT NULL | ||
| ` | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| export { ingestScorecard } from './ingestScorecard' |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.