0
0
mirror of https://github.com/thegeeklab/wp-docker-buildx.git synced 2024-09-19 15:12:44 +02:00
wp-docker-buildx/go.mod
Robert Kaussow 2a7a54d18e
fix: use semver tag helper from plugin lib (#76)
BREAKING CHANGE: A strict semver method is now used to automatically generate tags. Git tags that are not strictly semver-compatible will be ignored.
2023-12-05 11:46:02 +01:00

23 lines
681 B
Modula-2

module github.com/thegeeklab/wp-docker-buildx
go 1.21
require (
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/rs/zerolog v1.31.0
github.com/thegeeklab/wp-plugin-go v1.1.0
github.com/urfave/cli/v2 v2.26.0
golang.org/x/sys v0.15.0
)
require (
github.com/Masterminds/semver/v3 v3.2.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/net v0.19.0 // indirect
)