tidy gomod and gitignore (#2082)

Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
This commit is contained in:
Alex Goodman 2023-08-31 10:50:32 -04:00 committed by GitHub
parent 36d794febe
commit b454160549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 15 deletions

34
.gitignore vendored
View File

@ -1,18 +1,38 @@
# local development tailoring
go.work go.work
go.work.sum go.work.sum
.tool-versions
# app configuration
/.syft.yaml /.syft.yaml
# tool and bin directories
.tmp/
bin/
/bin /bin
/.bin /.bin
/build /build
CHANGELOG.md
VERSION
/test/results
/dist /dist
/snapshot /snapshot
.server/
# changelog generation
CHANGELOG.md
VERSION
# IDE configuration
.vscode/ .vscode/
.idea/
.server/
.history/ .history/
# test related
*.fingerprint *.fingerprint
/test/results
coverage.txt
*.log
# probable archives
.images
*.tar *.tar
*.jar *.jar
*.war *.war
@ -20,13 +40,7 @@ VERSION
*.jpi *.jpi
*.hpi *.hpi
*.zip *.zip
.idea/
*.iml *.iml
*.log
.images
.tmp/
coverage.txt
bin/
# Binaries for programs and plugins # Binaries for programs and plugins
*.exe *.exe

7
go.mod
View File

@ -11,6 +11,7 @@ require (
github.com/adrg/xdg v0.4.0 // indirect github.com/adrg/xdg v0.4.0 // indirect
github.com/anchore/bubbly v0.0.0-20230801194016-acdb4981b461 github.com/anchore/bubbly v0.0.0-20230801194016-acdb4981b461
github.com/anchore/clio v0.0.0-20230823172630-c42d666061af github.com/anchore/clio v0.0.0-20230823172630-c42d666061af
github.com/anchore/fangs v0.0.0-20230818131516-2186b10924fe
github.com/anchore/go-logger v0.0.0-20230725134548-c21dafa1ec5a github.com/anchore/go-logger v0.0.0-20230725134548-c21dafa1ec5a
github.com/anchore/go-macholibre v0.0.0-20220308212642-53e6d0aaf6fb github.com/anchore/go-macholibre v0.0.0-20220308212642-53e6d0aaf6fb
github.com/anchore/go-testutils v0.0.0-20200925183923-d5f45b0d3c04 github.com/anchore/go-testutils v0.0.0-20200925183923-d5f45b0d3c04
@ -41,6 +42,7 @@ require (
github.com/google/uuid v1.3.1 github.com/google/uuid v1.3.1
github.com/gookit/color v1.5.4 github.com/gookit/color v1.5.4
github.com/hashicorp/go-multierror v1.1.1 github.com/hashicorp/go-multierror v1.1.1
github.com/iancoleman/strcase v0.3.0
github.com/invopop/jsonschema v0.7.0 github.com/invopop/jsonschema v0.7.0
github.com/jinzhu/copier v0.4.0 github.com/jinzhu/copier v0.4.0
github.com/kastenhq/goversion v0.0.0-20230811215019-93b2f8823953 github.com/kastenhq/goversion v0.0.0-20230811215019-93b2f8823953
@ -79,11 +81,6 @@ require (
golang.org/x/mod v0.12.0 golang.org/x/mod v0.12.0
golang.org/x/net v0.14.0 golang.org/x/net v0.14.0
golang.org/x/term v0.11.0 golang.org/x/term v0.11.0
)
require (
github.com/anchore/fangs v0.0.0-20230818131516-2186b10924fe
github.com/iancoleman/strcase v0.3.0
gopkg.in/yaml.v3 v3.0.1 gopkg.in/yaml.v3 v3.0.1
modernc.org/sqlite v1.25.0 modernc.org/sqlite v1.25.0
) )