[chore]: Bump github.com/spf13/viper from 1.19.0 to 1.20.0

Bumps [github.com/spf13/viper](https://github.com/spf13/viper) from 1.19.0 to 1.20.0.
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](https://github.com/spf13/viper/compare/v1.19.0...v1.20.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/viper
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2025-03-17 06:53:34 +00:00 committed by GitHub
commit 4183b5f5ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
146 changed files with 4637 additions and 18493 deletions

8
vendor/github.com/spf13/viper/experimental.go generated vendored Normal file
View file

@ -0,0 +1,8 @@
package viper
// ExperimentalBindStruct tells Viper to use the new bind struct feature.
func ExperimentalBindStruct() Option {
return optionFunc(func(v *Viper) {
v.experimentalBindStruct = true
})
}