From ce8cb912bfc56a0df08c48c32d5e730b045e8edb Mon Sep 17 00:00:00 2001 From: Christoph Hartmann Date: Wed, 17 Apr 2024 09:14:21 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=91=20switch=20to=20json=20v2=20output?= =?UTF-8?q?=20format=20(#1249)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cli/reporter/print.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/reporter/print.go b/cli/reporter/print.go index 6f035fc9..ff4a64ad 100644 --- a/cli/reporter/print.go +++ b/cli/reporter/print.go @@ -40,7 +40,7 @@ var Formats = map[string]Format{ "yml": FormatYAMLv2, "json-v1": FormatJSONv1, "json-v2": FormatJSONv2, - "json": FormatJSONv1, + "json": FormatJSONv2, "junit": FormatJUnit, "csv": FormatCSV, }