Skip to content
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

osv: disable more ecosystems #1431

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions updater/osv/osv.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,20 @@ func (f *Factory) UpdaterSet(ctx context.Context) (s driver.UpdaterSet, err erro

// Ignore is a set of incoming ecosystems that we can throw out immediately.
var ignore = map[string]struct{}{
"almalinux": {}, // Currently not supported.
"alpine": {}, // Have a dedicated alpine updater.
"android": {}, // AFAIK, there's no Android container runtime.
"chainguard": {}, // Currently not supported.
"debian": {}, // Have a dedicated debian updater.
"github actions": {}, // Shouldn't be in containers?
"linux": {}, // Containers have no say in the kernel.
"opensuse": {}, // Have a dedicated SUSE updater.
"oss-fuzz": {}, // Seems to only record git revisions.
"red hat": {}, // Have a dedicated Red Hat VEX updater.
"rocky linux": {}, // Currently not supported.
"suse": {}, // Have a dedicated SUSE updater.
"ubuntu": {}, // Have a dedicated ubuntu updater.
"wolfi": {}, // Currently not supported.
}

type updater struct {
Expand Down
Loading