2021-10-13 03:40:58 +00:00
|
|
|
module codeberg.org/woodpecker-plugins/plugin-docker-buildx
|
2019-01-21 00:22:48 +00:00
|
|
|
|
2023-03-22 15:26:29 +00:00
|
|
|
go 1.20
|
2021-01-17 19:56:53 +00:00
|
|
|
|
2019-01-21 00:22:48 +00:00
|
|
|
require (
|
2022-10-11 09:38:36 +00:00
|
|
|
codeberg.org/6543/go-yaml2json v0.3.0
|
2022-12-21 17:11:09 +00:00
|
|
|
github.com/6543/go-version v1.3.1
|
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
|
2022-10-11 09:38:36 +00:00
|
|
|
github.com/stretchr/testify v1.8.0
|
2022-09-20 16:02:35 +00:00
|
|
|
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
|
2022-10-11 09:38:36 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2022-09-20 16:02:35 +00:00
|
|
|
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
|
2022-10-11 09:38:36 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2019-01-21 00:22:48 +00:00
|
|
|
)
|