-
Notifications
You must be signed in to change notification settings - Fork 532
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Following the addition of CRAN for the R language to the OSV database (google/osv.dev#1477), it would be helpful if this CLI supported scanning renv lockfiles.
A workaround at present is to parse the lockfile with jq and generate a custom lockfile:
jq '{
results: [
{
packages: [
.Packages | to_entries[] | {
package: {
name: .key,
version: .value.Version,
ecosystem: "CRAN"
}
}
]
}
]
}' renv.lock > osv-renv-lock.json
osv-scanner --lockfile osv-scanner:./osv-renv-lock.jsonReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request