From b1443c9a9aec16d52f54143d48a7d080cf49bcba Mon Sep 17 00:00:00 2001 From: Cuong Manh Le Date: Fri, 14 Feb 2020 11:43:45 +0700 Subject: [PATCH] Pinned go-autorest to v13.3.3 Azure/go-autorest version less than v12.0.0 causes ambiguous imports. Though it's not agola direct dependency, it causes problem when others use agola.io/agola as dependency. So pinning Azure/go-autorest to v1.13.3 to prevent this issue. See: https://github.com/Azure/go-autorest/issues/414 --- go.mod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go.mod b/go.mod index e8e900685..0e2131637 100644 --- a/go.mod +++ b/go.mod @@ -46,3 +46,5 @@ require ( ) replace github.com/docker/docker v1.13.1 => github.com/docker/engine v0.0.0-20200204220554-5f6d6f3f2203 + +replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.3+incompatible