Skip to content

Commit

Permalink
fix trivy vulns
Browse files Browse the repository at this point in the history
  • Loading branch information
cxMiguelSilva committed Jan 30, 2024
1 parent 729b0fb commit b9f91b2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
14 changes: 12 additions & 2 deletions .github/scripts/report/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
module github.com/Checkmarx/e2e-report

go 1.16
go 1.21

require github.com/tdewolff/minify/v2 v2.9.21
require (
github.com/rs/zerolog v1.31.0
github.com/tdewolff/minify/v2 v2.9.21
)

require (
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/tdewolff/parse/v2 v2.5.19 // indirect
golang.org/x/sys v0.12.0 // indirect
)
16 changes: 9 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ require (
github.com/yargevad/filepathx v1.0.0
github.com/zclconf/go-cty v1.13.1
golang.org/x/net v0.17.0
golang.org/x/text v0.13.0
golang.org/x/text v0.14.0
golang.org/x/tools v0.8.0
gopkg.in/yaml.v3 v3.0.1
helm.sh/helm/v3 v3.13.1
Expand All @@ -50,7 +50,8 @@ require (

require (
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/Microsoft/hcsshim v0.11.1 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
github.com/go-ini/ini v1.67.0 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
Expand Down Expand Up @@ -139,7 +140,6 @@ require (
github.com/json-iterator/go v1.1.12 // indirect
github.com/jung-kurt/gofpdf v1.16.2 // indirect
github.com/klauspost/compress v1.16.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
github.com/lib/pq v1.10.9 // indirect
Expand Down Expand Up @@ -198,8 +198,8 @@ require (
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/oauth2 v0.11.0 // indirect
golang.org/x/sync v0.4.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/api v0.126.0 // indirect
Expand Down Expand Up @@ -231,11 +231,13 @@ require (
)

replace (
github.com/containerd/containerd => github.com/containerd/containerd v1.6.18
github.com/containerd/containerd => github.com/containerd/containerd v1.6.26
github.com/docker/cli => github.com/docker/cli v20.10.12+incompatible
github.com/docker/docker => github.com/docker/docker v24.0.7+incompatible
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.1
github.com/moby/buildkit => github.com/moby/buildkit v0.10.4
github.com/moby/buildkit => github.com/moby/buildkit v0.11.4
github.com/opencontainers/image-spec => github.com/opencontainers/image-spec v1.0.2
github.com/spf13/afero => github.com/spf13/afero v1.2.2
go.etcd.io/etcd/pkg/v3 => go.etcd.io/etcd/pkg/v3 v3.5.10
golang.org/x/crypto => golang.org/x/crypto v0.17.0 // indirect
)

0 comments on commit b9f91b2

Please sign in to comment.