From f46e490c304d7cdc366542b2db98782be33271bf Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Wed, 26 Mar 2025 11:44:24 +0000 Subject: [chore] bumps our spf13/viper version (#3943) * bumps our spf13/viper version * fixes the one breaking change --- .../github.com/go-viper/mapstructure/v2/internal/errors/join.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vendor/github.com/go-viper/mapstructure/v2/internal/errors/join.go (limited to 'vendor/github.com/go-viper/mapstructure/v2/internal/errors/join.go') diff --git a/vendor/github.com/go-viper/mapstructure/v2/internal/errors/join.go b/vendor/github.com/go-viper/mapstructure/v2/internal/errors/join.go new file mode 100644 index 000000000..d74e3a0b5 --- /dev/null +++ b/vendor/github.com/go-viper/mapstructure/v2/internal/errors/join.go @@ -0,0 +1,9 @@ +//go:build go1.20 + +package errors + +import "errors" + +func Join(errs ...error) error { + return errors.Join(errs...) +} -- cgit v1.2.3