From 485bfd3fbe93a13f0bfd7c4a8d0916e684b9ef93 Mon Sep 17 00:00:00 2001 From: Dan Rollo Date: Thu, 19 Oct 2023 21:39:22 -0400 Subject: [PATCH] fix integration test failure due to CVE-2023-45142 in dev dependency --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3e2f896..749b859 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ GOLANGCI_VERSION=v1.24.0 GOLANGCI_LINT_DOCKER=golangci/golangci-lint:$(GOLANGCI_VERSION) LINT_CMD=golangci-lint cache status --color always && golangci-lint run --timeout 5m --color always -v --max-same-issues 10 NANCY_IGNORE=$(shell cat .nancy-ignore | cut -d\# -f 1) -IT_EXCLUDED_VULNS=CVE-2021-3121,CVE-2022-21698,CVE-2022-29153,sonatype-2021-1401,CVE-2023-32731 +IT_EXCLUDED_VULNS=CVE-2021-3121,CVE-2022-21698,CVE-2022-29153,sonatype-2021-1401,CVE-2023-32731,CVE-2023-45142 ifeq ($(findstring localbuild,$(CIRCLE_SHELL_ENV)),localbuild) DOCKER_CMD=sudo docker