1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-15 01:34:21 +02:00

chore(deps): bump github.com/golangci/golangci-lint from 1.33.0 to 1.34.1 (#1975)

* chore(deps): bump github.com/golangci/golangci-lint

Bumps [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) from 1.33.0 to 1.34.1.
- [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.33.0...v1.34.1)

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

* fix: lint issues

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: go mod tidy

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
dependabot[bot]
2020-12-29 15:40:21 +00:00
committed by GitHub
parent 47f1a448dd
commit 1b0b6be8c5
16 changed files with 46 additions and 59 deletions

View File

@ -234,6 +234,7 @@ func TestMinioUploadSkipPublish(t *testing.T) {
}
func randomListen(t *testing.T) string {
t.Helper()
listener, err := net.Listen("tcp", "127.0.0.1:0")
require.NoError(t, err)
listener.Close()
@ -292,6 +293,7 @@ func removeTestData() {
}
func getFiles(t *testing.T, ctx *context.Context, cfg config.Blob) []string {
t.Helper()
url, err := urlFor(ctx, cfg)
require.NoError(t, err)
conn, err := blob.OpenBucket(ctx, url)