config: add conditions
Some checks failed
codeql / analyze (go) (push) Waiting to run
build / test (push) Failing after 59s
build / lint (push) Has been cancelled

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2024-01-15 01:07:50 +03:00
parent 352de16fae
commit 712faba804
3 changed files with 51 additions and 92 deletions

26
go.mod
View File

@@ -1,29 +1,31 @@
module go.unistack.org/micro-config-consul/v3
go 1.18
go 1.20
require (
github.com/hashicorp/consul/api v1.20.0
github.com/hashicorp/go-hclog v1.4.0
github.com/imdario/mergo v0.3.13
go.unistack.org/micro/v3 v3.10.16
github.com/hashicorp/consul/api v1.26.1
github.com/hashicorp/go-hclog v1.6.2
github.com/imdario/mergo v0.3.16
go.unistack.org/micro/v3 v3.10.36
)
require (
dario.cat/mergo v1.0.0 // indirect
github.com/armon/go-metrics v0.4.1 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/google/btree v1.0.1 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/go-msgpack v1.1.5 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/serf v0.10.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 // indirect
golang.org/x/sys v0.16.0 // indirect
)