-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathgo.mod
More file actions
51 lines (48 loc) · 2.09 KB
/
go.mod
File metadata and controls
51 lines (48 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module github.com/grafana/wait-for-github
go 1.25.0
require (
github.com/bradleyfalzon/ghinstallation/v2 v2.18.0
github.com/fatih/color v1.19.0
github.com/google/go-github/v84 v84.0.0
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
github.com/hashicorp/go-retryablehttp v0.7.8
github.com/lmittmann/tint v1.1.3
github.com/migueleliasweb/go-github-mock v1.5.0
github.com/olekukonko/tablewriter v1.1.4
github.com/shurcooL/graphql v0.0.0-20240915155400-7ee5256398cf
github.com/stretchr/testify v1.11.1
github.com/urfave/cli/v3 v3.8.0
github.com/willabides/actionslog v0.5.1
golang.org/x/oauth2 v0.36.0
golang.org/x/term v0.42.0
golang.org/x/text v0.36.0
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/clipperhouse/displaywidth v0.10.0 // indirect
github.com/clipperhouse/uax29/v2 v2.6.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/go-playground/validator/v10 v10.26.0 // indirect
github.com/goccy/go-yaml v1.11.0 // indirect
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
github.com/google/go-github/v73 v73.0.0 // indirect
github.com/google/go-querystring v1.2.0 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.19 // indirect
github.com/olekukonko/cat v0.0.0-20250911104152-50322a0618f6 // indirect
github.com/olekukonko/errors v1.2.0 // indirect
github.com/olekukonko/ll v0.1.6 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/exp v0.0.0-20240531132922-fd00a4e0eefc // indirect
golang.org/x/sys v0.43.0 // indirect
golang.org/x/time v0.11.0 // indirect
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)