2022-05-02 20:43:40 +00:00
|
|
|
module github.com/thegeeklab/drone-s3-sync
|
|
|
|
|
2022-08-05 11:18:54 +00:00
|
|
|
go 1.19
|
2022-05-02 20:43:40 +00:00
|
|
|
|
|
|
|
require (
|
2022-08-05 11:21:37 +00:00
|
|
|
github.com/aws/aws-sdk-go v1.44.70
|
2022-05-02 20:43:40 +00:00
|
|
|
github.com/joho/godotenv v1.4.0
|
|
|
|
github.com/ryanuber/go-glob v1.0.0
|
2022-07-21 07:56:47 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.0
|
2022-08-05 14:56:24 +00:00
|
|
|
github.com/thegeeklab/drone-plugin-lib/v2 v2.1.0
|
2022-08-05 11:21:46 +00:00
|
|
|
github.com/urfave/cli/v2 v2.11.1
|
2022-05-02 20:43:40 +00:00
|
|
|
)
|
2019-01-08 16:32:13 +00:00
|
|
|
|
|
|
|
require (
|
2022-05-02 20:43:40 +00:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2022-05-29 11:56:55 +00:00
|
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
2022-05-02 20:43:40 +00:00
|
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
|
2022-07-21 07:56:47 +00:00
|
|
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
|
2019-01-08 16:32:13 +00:00
|
|
|
)
|