From e31567b8df950a45bf93333fd837d667821ec0d9 Mon Sep 17 00:00:00 2001 From: Alan Pope Date: Wed, 11 Sep 2024 15:59:59 +0100 Subject: [PATCH] fix: Update gitmodule url (#2106) 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 281e4b33..21e606b7 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