diff --git a/actions/update.go b/actions/update.go index 15cd017..1f61af5 100644 --- a/actions/update.go +++ b/actions/update.go @@ -4,7 +4,7 @@ import ( "math/rand" "time" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/v2tec/watchtower/container" ) diff --git a/container/client.go b/container/client.go index afa9a33..340c51b 100644 --- a/container/client.go +++ b/container/client.go @@ -5,7 +5,7 @@ import ( "io/ioutil" "time" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/docker/docker/api/types" "github.com/docker/docker/api/types/network" dockerclient "github.com/docker/docker/client" diff --git a/container/trust.go b/container/trust.go index a472649..90ba335 100644 --- a/container/trust.go +++ b/container/trust.go @@ -5,7 +5,7 @@ import ( "os" "strings" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/docker/docker/api/types" "github.com/docker/docker/api/types/reference" "github.com/docker/docker/cli/command" diff --git a/glide.yaml b/glide.yaml index 8478cfa..6a96785 100644 --- a/glide.yaml +++ b/glide.yaml @@ -1,6 +1,6 @@ package: github.com/v2tec/watchtower import: -- package: github.com/Sirupsen/logrus +- package: github.com/sirupsen/logrus version: ~0.11.x - package: github.com/docker/docker version: ~1.13.x diff --git a/main.go b/main.go index edf9599..5eb42c4 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "strconv" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/robfig/cron" "github.com/urfave/cli" "github.com/v2tec/watchtower/actions" diff --git a/notifications/email.go b/notifications/email.go index 5380f7f..54a2f9f 100644 --- a/notifications/email.go +++ b/notifications/email.go @@ -9,7 +9,7 @@ import ( "strconv" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/urfave/cli" ) diff --git a/notifications/notifier.go b/notifications/notifier.go index 854b31c..2c86a6b 100644 --- a/notifications/notifier.go +++ b/notifications/notifier.go @@ -1,7 +1,7 @@ package notifications import ( - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/urfave/cli" )