-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updates dependencies * Flags added, return codes on os.Exit * Filtering done implemented * Adds more test coverage * Fixes snyk test failures * Changes to OSV API handling * Fixes issue with OSV provider API call * Fixes workflow for go 1.21 * Removes stale SBOM
- Loading branch information
Showing
19 changed files
with
297 additions
and
13,066 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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 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 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 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,48 +1,50 @@ | ||
module github.com/devops-kung-fu/bomber | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.21.3 | ||
|
||
require ( | ||
github.com/CycloneDX/cyclonedx-go v0.7.1 | ||
github.com/CycloneDX/cyclonedx-go v0.7.2 | ||
github.com/briandowns/spinner v1.23.0 | ||
github.com/devops-kung-fu/common v0.2.5 | ||
github.com/gookit/color v1.5.3 | ||
github.com/devops-kung-fu/common v0.2.6 | ||
github.com/gookit/color v1.5.4 | ||
github.com/jarcoal/httpmock v1.3.0 | ||
github.com/jedib0t/go-pretty/v6 v6.4.6 | ||
github.com/jedib0t/go-pretty/v6 v6.4.8 | ||
github.com/kirinlabs/HttpRequest v1.1.1 | ||
github.com/microcosm-cc/bluemonday v1.0.23 | ||
github.com/package-url/packageurl-go v0.1.0 | ||
github.com/microcosm-cc/bluemonday v1.0.26 | ||
github.com/package-url/packageurl-go v0.1.2 | ||
github.com/remeh/sizedwaitgroup v1.0.0 | ||
github.com/spf13/afero v1.9.5 | ||
github.com/spf13/afero v1.10.0 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/stretchr/testify v1.8.2 | ||
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 | ||
github.com/stretchr/testify v1.8.4 | ||
k8s.io/utils v0.0.0-20230726121419-3b25d923346b | ||
) | ||
|
||
require ( | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/rogpeppe/go-internal v1.8.0 // indirect | ||
golang.org/x/exp v0.0.0-20230202163644-54bba9f4231b // indirect | ||
golang.org/x/term v0.7.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/aymerick/douceur v0.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/color v1.15.0 // indirect | ||
github.com/gomarkdown/markdown v0.0.0-20230322041520-c84983bdbf2a | ||
github.com/gomarkdown/markdown v0.0.0-20230922112808-5421fefb8386 | ||
github.com/gorilla/css v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.18 // indirect | ||
github.com/mattn/go-runewidth v0.0.14 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
golang.org/x/net v0.9.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.