Skip to content

Commit

Permalink
Add ELF binary package cataloger (#2396)
Browse files Browse the repository at this point in the history
* feat Adds Elf package catalogger

Signed-off-by: Brian Ebarb <[email protected]>

* Add test fixtures for elf package

Signed-off-by: Colleen Divers <[email protected]>

* bump JSON schema to v16.0.6 + expand test fixtures

Signed-off-by: Alex Goodman <[email protected]>

* less verbose logging

Signed-off-by: Alex Goodman <[email protected]>

* remove dead test code

Signed-off-by: Alex Goodman <[email protected]>

* remove unreleated swift change

Signed-off-by: Alex Goodman <[email protected]>

---------

Signed-off-by: Brian Ebarb <[email protected]>
Signed-off-by: Colleen Divers <[email protected]>
Signed-off-by: Alex Goodman <[email protected]>
Co-authored-by: Colleen Divers <[email protected]>
Co-authored-by: Alex Goodman <[email protected]>
  • Loading branch information
3 people authored Mar 14, 2024
1 parent 7ab6fc3 commit 6a2517b
Show file tree
Hide file tree
Showing 32 changed files with 2,980 additions and 6 deletions.
2 changes: 1 addition & 1 deletion internal/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package internal
const (
// JSONSchemaVersion is the current schema version output by the JSON encoder
// This is roughly following the "SchemaVer" guidelines for versioning the JSON schema. Please see schema/json/README.md for details on how to increment.
JSONSchemaVersion = "16.0.5"
JSONSchemaVersion = "16.0.6"
)
1 change: 1 addition & 0 deletions internal/task/package_tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ func DefaultPackageTaskFactories() PackageTaskFactories {
},
pkgcataloging.DeclaredTag, pkgcataloging.DirectoryTag, pkgcataloging.InstalledTag, pkgcataloging.ImageTag, "binary",
),
newSimplePackageTaskFactory(binary.NewELFPackageCataloger, pkgcataloging.DeclaredTag, pkgcataloging.DirectoryTag, pkgcataloging.InstalledTag, pkgcataloging.ImageTag, "binary", "elf-package"),
newSimplePackageTaskFactory(githubactions.NewActionUsageCataloger, pkgcataloging.DeclaredTag, pkgcataloging.DirectoryTag, "github", "github-actions"),
newSimplePackageTaskFactory(githubactions.NewWorkflowUsageCataloger, pkgcataloging.DeclaredTag, pkgcataloging.DirectoryTag, "github", "github-actions"),
newPackageTaskFactory(
Expand Down
Loading

0 comments on commit 6a2517b

Please sign in to comment.