Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessio Caiazza <acaiazza@gitlab.com>2022-10-12 17:50:46 +0300
committerAlessio Caiazza <acaiazza@gitlab.com>2022-10-12 17:50:46 +0300
commitc0931e2952f4fd633c417d3b43abf6b4e39dee28 (patch)
tree066c47d33997345f2a571a08b3038009439fd15b
parent1b10cb28453ee6b7c23813ebc14da2aa311f8785 (diff)
Ignore go <= 1.16 dependenciesCVE-2022-32149
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 66e0aadfd..62cd24ec9 100644
--- a/Makefile
+++ b/Makefile
@@ -420,7 +420,7 @@ verify: check-mod-tidy notice-up-to-date check-proto rubocop lint
.PHONY: check-mod-tidy
check-mod-tidy:
${Q}${GIT} diff --quiet --exit-code go.mod go.sum || (echo "error: uncommitted changes in go.mod or go.sum" && exit 1)
- ${Q}go mod tidy
+ ${Q}go mod tidy -compat=1.17
${Q}${GIT} diff --quiet --exit-code go.mod go.sum || (echo "error: uncommitted changes in go.mod or go.sum" && exit 1)
.PHONY: lint