From 28ec4b384d238399dd1770b1ace2255c8cc9f0f5 Mon Sep 17 00:00:00 2001 From: Alan Pope Date: Wed, 11 Sep 2024 15:36:11 +0100 Subject: [PATCH] fix: Update gitmodule url As per #2100 - we should not use git protocol URIs for modules as it can be problematic for consumers behind restrictive or poorly configured proxies. Signed-off-by: Alan Pope --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 281e4b3304f..21e606b75a5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "test/quality/vulnerability-match-labels"] path = test/quality/vulnerability-match-labels - url = git@github.com:anchore/vulnerability-match-labels.git + url = https://github.com/anchore/vulnerability-match-labels.git branch = main