Switch
client, err := gh.HTTPClient(nil)
to
client := &http.Client{}
and everything works again
37 lines
1.2 KiB
Modula-2
37 lines
1.2 KiB
Modula-2
module github.com/GitHubSecurityLab/gh-mrva
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/cli/go-gh v1.2.1
|
|
github.com/motemen/go-loghttp v0.0.0-20231107055348-29ae44b293f4
|
|
github.com/motemen/go-nuts v0.0.0-20220604134737-2658d0104f31
|
|
github.com/spf13/cobra v1.7.0
|
|
)
|
|
|
|
require (
|
|
github.com/aymanbagabas/go-osc52 v1.2.1 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/cli/safeexec v1.0.0 // indirect
|
|
github.com/cli/shurcooL-graphql v0.0.2 // indirect
|
|
github.com/google/uuid v1.3.0 // direct
|
|
github.com/henvic/httpretty v0.0.6 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.17 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/muesli/termenv v0.14.0 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/thlib/go-timezone-local v0.0.0-20210907160436-ef149e42d28e // indirect
|
|
golang.org/x/net v0.7.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/term v0.5.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // direct
|
|
)
|
|
|
|
replace github.com/GitHubSecurityLab/gh-mrva => /Users/hohn/work-gh/mrva/gh-mrva
|