build(deps): Bump github.com/golangci/golangci-lint from 1.48.0 to 1.49.0 (#13013)

* build(deps): Bump github.com/golangci/golangci-lint

Bumps [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) from 1.48.0 to 1.49.0.
- [Release notes](https://github.com/golangci/golangci-lint/releases)
- [Changelog](https://github.com/golangci/golangci-lint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/golangci/golangci-lint/compare/v1.48.0...v1.49.0)

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

Signed-off-by: dependabot[bot] <support@github.com>

* updates

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
dependabot[bot]
2022-08-24 23:13:11 +02:00
committed by GitHub
co-authored by Julien Robert
parent d8a7dbd3fd
commit 6af89d6ce3
16 changed files with 108 additions and 307 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ type Server struct {
}
func (h Server) Start() error {
return http.ListenAndServe(h.addr, h.h)
return http.ListenAndServe(h.addr, h.h) //nolint:gosec
}
func NewServer(settings Settings) (Server, error) {