2020-09-20 20:04:09 +00:00
|
|
|
module github.com/thegeeklab/drone-github-comment
|
2020-09-19 22:00:34 +00:00
|
|
|
|
2023-02-08 09:13:43 +00:00
|
|
|
go 1.20
|
2020-09-19 22:00:34 +00:00
|
|
|
|
|
|
|
require (
|
2023-04-25 07:51:44 +00:00
|
|
|
github.com/google/go-github/v52 v52.0.0
|
2023-02-08 10:07:22 +00:00
|
|
|
github.com/joho/godotenv v1.5.1
|
2023-05-26 08:58:22 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.2
|
2023-04-14 21:26:13 +00:00
|
|
|
github.com/thegeeklab/drone-plugin-lib/v2 v2.3.2
|
2023-05-14 16:54:20 +00:00
|
|
|
github.com/urfave/cli/v2 v2.25.3
|
2023-05-13 09:13:33 +00:00
|
|
|
golang.org/x/oauth2 v0.8.0
|
2022-03-30 20:41:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-03-20 08:36:28 +00:00
|
|
|
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect
|
|
|
|
github.com/cloudflare/circl v1.1.0 // indirect
|
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
|
2023-03-20 08:36:28 +00:00
|
|
|
golang.org/x/crypto v0.7.0 // indirect
|
2023-05-13 09:13:33 +00:00
|
|
|
golang.org/x/net v0.10.0 // indirect
|
|
|
|
golang.org/x/sys v0.8.0 // 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
|
|
|
)
|