1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-16 03:52:12 +02:00

bump: retry to v3 (#970)

This commit is contained in:
Carlos Alexandro Becker 2019-02-27 13:43:03 -03:00 committed by GitHub
parent e29d62a450
commit 844676121b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

2
go.mod
View File

@ -12,7 +12,7 @@ require (
github.com/google/go-querystring v1.0.0 // indirect
github.com/goreleaser/nfpm v0.9.7
github.com/imdario/mergo v0.3.6
github.com/kamilsk/retry v0.0.0-20181229152359-495c1d672c93
github.com/kamilsk/retry/v3 v3.4.4
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mattn/go-zglob v0.0.0-20180803001819-2ea3427bfa53

4
go.sum
View File

@ -34,8 +34,8 @@ github.com/imdario/mergo v0.3.6 h1:xTNEAn+kxVO7dTZGu0CegyqKZmoWFI0rF8UxjlB2d28=
github.com/imdario/mergo v0.3.6/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA=
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 h1:12VvqtR6Aowv3l/EQUlocDHW2Cp4G9WJVH7uyH8QFJE=
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k=
github.com/kamilsk/retry v0.0.0-20181229152359-495c1d672c93 h1:aP888S37c3tqOCllQAxo5xDE+LJesxR0OH7zntgoPiM=
github.com/kamilsk/retry v0.0.0-20181229152359-495c1d672c93/go.mod h1:vW4uuVWZOGWqkbtgGTNPGAiuN2nUBz0qYr4tb2ww4x8=
github.com/kamilsk/retry/v3 v3.4.4 h1:lnmlAKiNtllJLzv2brlnW8g3NhbDEay9sq4ecBr3Nk0=
github.com/kamilsk/retry/v3 v3.4.4/go.mod h1:4aG7zHzQa5sg2zzm7r0bIFu3hBA+x7kRpxs5cJQg/x8=
github.com/mattn/go-colorable v0.0.9 h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=
github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=
github.com/mattn/go-isatty v0.0.4 h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=

View File

@ -10,9 +10,9 @@ import (
"github.com/goreleaser/goreleaser/internal/pipe"
"github.com/goreleaser/goreleaser/internal/semerrgroup"
"github.com/goreleaser/goreleaser/pkg/context"
"github.com/kamilsk/retry"
"github.com/kamilsk/retry/backoff"
"github.com/kamilsk/retry/strategy"
"github.com/kamilsk/retry/v3"
"github.com/kamilsk/retry/v3/backoff"
"github.com/kamilsk/retry/v3/strategy"
"github.com/pkg/errors"
)