2020-09-20 20:04:09 +00:00
|
|
|
module github.com/thegeeklab/drone-github-comment
|
2020-09-19 22:00:34 +00:00
|
|
|
|
2022-03-30 20:41:46 +00:00
|
|
|
go 1.18
|
2020-09-19 22:00:34 +00:00
|
|
|
|
|
|
|
require (
|
2021-10-15 10:03:40 +00:00
|
|
|
github.com/google/go-github/v39 v39.2.0
|
2021-09-25 10:08:12 +00:00
|
|
|
github.com/joho/godotenv v1.4.0
|
2021-06-16 15:02:05 +00:00
|
|
|
github.com/sirupsen/logrus v1.8.1
|
2022-06-20 19:04:11 +00:00
|
|
|
github.com/thegeeklab/drone-plugin-lib/v2 v2.0.1
|
2022-07-11 06:51:36 +00:00
|
|
|
github.com/urfave/cli/v2 v2.11.0
|
2022-07-11 08:51:51 +00:00
|
|
|
golang.org/x/oauth2 v0.0.0-20220630143837-2104d58473e0
|
2022-03-30 20:41:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2022-05-03 20:48:03 +00:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
2022-03-30 20:41:46 +00:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2022-05-29 12:06:59 +00:00
|
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
2022-03-30 20:41:46 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect
|
2022-07-11 08:51:51 +00:00
|
|
|
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
|
2022-03-30 20:41:46 +00:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
2020-09-19 22:00:34 +00:00
|
|
|
)
|