2021-10-13 03:40:58 +00:00
|
|
|
module codeberg.org/woodpecker-plugins/plugin-docker-buildx
|
2019-01-21 00:22:48 +00:00
|
|
|
|
2021-10-13 03:40:58 +00:00
|
|
|
go 1.17
|
2021-01-17 19:56:53 +00:00
|
|
|
|
2019-01-21 00:22:48 +00:00
|
|
|
require (
|
2021-01-10 22:47:55 +00:00
|
|
|
github.com/coreos/go-semver v0.3.0
|
2021-01-11 20:54:49 +00:00
|
|
|
github.com/drone-plugins/drone-plugin-lib v0.4.0
|
2021-09-25 10:07:54 +00:00
|
|
|
github.com/joho/godotenv v1.4.0
|
2022-09-20 16:02:35 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.0
|
|
|
|
github.com/urfave/cli/v2 v2.16.3
|
2021-05-10 07:03:59 +00:00
|
|
|
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
|
2022-09-20 16:02:35 +00:00
|
|
|
honnef.co/go/tools v0.3.3
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/BurntSushi/toml v1.1.0 // indirect
|
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
|
|
|
golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e // indirect
|
|
|
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
|
|
|
|
golang.org/x/tools v0.1.11-0.20220513221640-090b14e8501f // indirect
|
2019-01-21 00:22:48 +00:00
|
|
|
)
|