diff options
author | Michael Muré <batolettre@gmail.com> | 2022-09-10 19:51:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-10 19:51:29 +0200 |
commit | 896d7cb1b03d449f399bd835693188c3910866a5 (patch) | |
tree | 9feec74ad7beea92ca4d0d5572f3b980f54319ae /go.mod | |
parent | d0db3b121bb9b0b8ec007c3a12cec015dc7c77d7 (diff) | |
parent | 8bd98454def2e76f30aabcd1ac284bbbf48d8ad5 (diff) | |
download | git-bug-896d7cb1b03d449f399bd835693188c3910866a5.tar.gz |
Merge pull request #868 from MichaelMure/feat-security-checks
feat: check security via `make` recipe and Github check
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -29,12 +29,20 @@ require ( github.com/xanzy/go-gitlab v0.73.1 golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c - golang.org/x/sync v0.0.0-20210220032951-036812b2e83c + golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab golang.org/x/text v0.3.7 ) require ( + github.com/lithammer/dedent v1.1.0 // indirect + github.com/owenrumney/go-sarif v1.0.11 // indirect + github.com/segmentio/fasthash v1.0.3 // indirect + github.com/zclconf/go-cty v1.8.4 // indirect + golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect +) + +require ( github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/Microsoft/go-winio v0.4.16 // indirect github.com/RoaringBitmap/roaring v0.4.23 // indirect @@ -76,11 +84,12 @@ require ( github.com/mattn/go-colorable v0.1.12 // indirect github.com/mattn/go-runewidth v0.0.12 // indirect github.com/mitchellh/go-homedir v1.1.0 // indirect - github.com/mitchellh/mapstructure v1.3.1 // indirect + github.com/mitchellh/mapstructure v1.4.1 // indirect github.com/mschoch/smat v0.2.0 // indirect github.com/mtibben/percent v0.2.1 // indirect github.com/philhofer/fwd v1.0.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/praetorian-inc/gokart v0.4.0 github.com/rivo/uniseg v0.1.0 // indirect github.com/russross/blackfriday/v2 v2.1.0 // indirect github.com/sergi/go-diff v1.1.0 // indirect @@ -94,12 +103,12 @@ require ( github.com/xanzy/ssh-agent v0.3.0 // indirect github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect go.etcd.io/bbolt v1.3.5 // indirect - golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect + golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect golang.org/x/net v0.0.0-20220805013720-a33c5aa5df48 // indirect golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect - golang.org/x/tools v0.1.10 // indirect - golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect + golang.org/x/tools v0.1.13-0.20220803210227-8b9a1fbdf5c3 // indirect + golang.org/x/vuln v0.0.0-20220908155419-5537ad2271a7 google.golang.org/appengine v1.6.7 // indirect google.golang.org/protobuf v1.28.1 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect |