Skip to content

Commit

Permalink
🐛 Don't check for updates for the sbom provider (#1428)
Browse files Browse the repository at this point in the history
It's builtin
  • Loading branch information
jaym authored Sep 10, 2024
1 parent 4b8f1f0 commit 0917d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ func updateProviders() error {
}
updatedProviders := []*providers.Provider{}
for _, provider := range allProviders {
if provider.Name == "mock" || provider.Name == "core" {
if provider.Name == "mock" || provider.Name == "core" || provider.Name == "sbom" {
continue
}
latestVersion, err := providers.LatestVersion(provider.Name)
Expand Down

0 comments on commit 0917d4f

Please sign in to comment.