-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump Go version in go.mod to 1.17 (#156)
- Loading branch information
Showing
1 changed file
with
48 additions
and
19 deletions.
There are no files selected for viewing
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,50 +1,79 @@ | ||
module github.com/cooperspencer/gickup | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
code.gitea.io/sdk/gitea v0.15.1 | ||
github.com/alecthomas/kong v0.7.1 | ||
github.com/cooperspencer/onedev v0.0.0-20230220110259-c2789266f8ed | ||
github.com/go-git/go-git/v5 v5.5.2 | ||
github.com/gogs/go-gogs-client v0.0.0-20210131175652-1d7215cd8d85 | ||
github.com/google/go-github/v41 v41.0.0 | ||
github.com/gookit/color v1.5.2 | ||
github.com/ktrysmt/go-bitbucket v0.9.55 | ||
github.com/melbahja/goph v1.3.0 | ||
github.com/mholt/archiver v3.1.1+incompatible | ||
github.com/prometheus/client_golang v1.14.0 | ||
github.com/robfig/cron/v3 v3.0.1 | ||
github.com/rs/zerolog v1.29.0 | ||
github.com/shurcooL/githubv4 v0.0.0-20230215024106-420ad0987b9b | ||
github.com/xanzy/go-gitlab v0.80.2 | ||
golang.org/x/crypto v0.6.0 | ||
golang.org/x/oauth2 v0.5.0 | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.6.0 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect | ||
github.com/alecthomas/kong v0.7.1 | ||
github.com/acomagu/bufpipe v1.0.3 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cloudflare/circl v1.3.3 // indirect | ||
github.com/cooperspencer/onedev v0.0.0-20230220110259-c2789266f8ed | ||
github.com/dsnet/compress v0.0.1 // indirect | ||
github.com/emirpasic/gods v1.18.1 // indirect | ||
github.com/frankban/quicktest v1.14.4 // indirect | ||
github.com/go-git/gcfg v1.5.0 // indirect | ||
github.com/go-git/go-billy/v5 v5.4.1 // indirect | ||
github.com/go-git/go-git/v5 v5.5.2 | ||
github.com/gogs/go-gogs-client v0.0.0-20210131175652-1d7215cd8d85 | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/go-github/v41 v41.0.0 | ||
github.com/gookit/color v1.5.2 | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect | ||
github.com/hashicorp/go-version v1.6.0 // indirect | ||
github.com/ktrysmt/go-bitbucket v0.9.55 | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/kevinburke/ssh_config v1.2.0 // indirect | ||
github.com/kr/fs v0.1.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/melbahja/goph v1.3.0 | ||
github.com/mholt/archiver v3.1.1+incompatible | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/nwaples/rardecode v1.1.3 // indirect | ||
github.com/pierrec/lz4 v2.6.1+incompatible // indirect | ||
github.com/pjbgf/sha1cd v0.2.3 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pkg/sftp v1.13.5 // indirect | ||
github.com/prometheus/client_golang v1.14.0 | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.40.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
github.com/robfig/cron/v3 v3.0.1 | ||
github.com/rs/zerolog v1.29.0 | ||
github.com/sergi/go-diff v1.3.1 // indirect | ||
github.com/shurcooL/githubv4 v0.0.0-20230215024106-420ad0987b9b | ||
github.com/shurcooL/graphql v0.0.0-20220606043923-3cf50f8a0a29 // indirect | ||
github.com/skeema/knownhosts v1.1.0 // indirect | ||
github.com/ulikunitz/xz v0.5.11 // indirect | ||
github.com/xanzy/go-gitlab v0.80.2 | ||
github.com/xanzy/ssh-agent v0.3.3 // indirect | ||
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
golang.org/x/crypto v0.6.0 | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/oauth2 v0.5.0 | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
) |