From f2dec633140874899658762999885342440a286f Mon Sep 17 00:00:00 2001 From: "brian m. carlson" Date: Tue, 21 Feb 2023 21:53:32 +0000 Subject: [PATCH] go.mod: bump version to 1.17 One of our dependencies now requires Go 1.17. Bump the version in go.mod accordingly. To please Go, now also run `go mod tidy`, which separates the indirect dependencies into separate stanzas. --- go.mod | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 39828b7a..195814e4 100644 --- a/go.mod +++ b/go.mod @@ -9,24 +9,38 @@ require ( github.com/git-lfs/go-netrc v0.0.0-20210914205454-f0c862dd687a github.com/git-lfs/pktline v0.0.0-20210330133718-06e9096e2825 github.com/git-lfs/wildmatch/v2 v2.0.1 - github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/leonelquinteros/gotext v1.5.0 github.com/mattn/go-isatty v0.0.4 github.com/olekukonko/ts v0.0.0-20171002115256-78ecb04241c0 github.com/pkg/errors v0.0.0-20170505043639-c605e284fe17 github.com/rubyist/tracerx v0.0.0-20170927163412-787959303086 github.com/spf13/cobra v0.0.3 - github.com/spf13/pflag v1.0.3 // indirect github.com/ssgelm/cookiejarparser v1.0.1 github.com/stretchr/testify v1.6.1 - github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect - github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect github.com/xeipuuv/gojsonschema v0.0.0-20170210233622-6b67b3fab74d - golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect golang.org/x/net v0.7.0 golang.org/x/sync v0.1.0 golang.org/x/sys v0.5.0 +) + +require ( + github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/hashicorp/go-uuid v1.0.2 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/jcmturner/aescts/v2 v2.0.0 // indirect + github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect + github.com/jcmturner/gofork v1.0.0 // indirect + github.com/jcmturner/goidentity/v6 v6.0.1 // indirect + github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect + github.com/jcmturner/rpc/v2 v2.0.3 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/spf13/pflag v1.0.3 // indirect + github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect + github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect + golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect + golang.org/x/text v0.7.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) -go 1.11 +go 1.17