From 2c0a4c9c17b0a149422e8010a04a67650d61b6ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Tue, 4 Feb 2020 23:24:32 +0100 Subject: [PATCH] Remove the reference to openshift/api MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The referenced tag has been removed, which breaks dependabot (#791). This is another attempt to fix it, by removing an explicit reference (which was added when updating Buildah, because the version seemed newer than Buildah's v0.0.0 with a newer commit). The referenced package is never even physically vendored in here, so remove the reference: > go mod edit -droprequire=github.com/openshift/api > make vendor Signed-off-by: Miloslav Trmač --- go.mod | 1 - 1 file changed, 1 deletion(-) diff --git a/go.mod b/go.mod index 99bc027e..4193b607 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,6 @@ require ( github.com/opencontainers/image-spec v1.0.2-0.20190823105129-775207bd45b6 github.com/opencontainers/image-tools v0.0.0-20170926011501-6d941547fa1d github.com/opencontainers/runtime-spec v1.0.0 // indirect - github.com/openshift/api v3.9.1-0.20190810003144-27fb16909b15+incompatible // indirect github.com/pkg/errors v0.9.1 github.com/russross/blackfriday v2.0.0+incompatible // indirect github.com/sirupsen/logrus v1.4.2