From ed929a9983c7ac618f0136d7030ae781800eccdc Mon Sep 17 00:00:00 2001 From: Alexis-Maurer Fortin Date: Mon, 6 Apr 2026 10:40:46 -0400 Subject: [PATCH] =?UTF-8?q?generated=20an=20actual=20guid=20so=20that=20it?= =?UTF-8?q?=20respects=20the=20github=20sarif=20spec.=20Replaced=20the=20a?= =?UTF-8?q?ll-zeros=20GUID=20with=200c8bf036-487d-590a-8c22-c41f287b1560?= =?UTF-8?q?=20=E2=80=94=20a=20deterministic=20UUID=20v5=20derived=20from?= =?UTF-8?q?=20https://boostsecurity.io/boost/sast.=20It=20satisfies=20the?= =?UTF-8?q?=20SARIF=20schema=20pattern=20requiring=20a=20valid=20RFC=20412?= =?UTF-8?q?2=20UUID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- formatters/sarif/sarif.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formatters/sarif/sarif.go b/formatters/sarif/sarif.go index c4d8404..a2a4369 100644 --- a/formatters/sarif/sarif.go +++ b/formatters/sarif/sarif.go @@ -76,7 +76,7 @@ func (f *Format) Format(ctx context.Context, packages []*models.PackageInsights) taxonomyRef := sarif.NewToolComponentReference(). WithName("boost/sast"). WithIndex(0). - WithGuid("00000000-0000-0000-0000-000000000000") + WithGuid("0c8bf036-487d-590a-8c22-c41f287b1560") run.Tool.Driver.WithSupportedTaxonomies([]*sarif.ToolComponentReference{taxonomyRef}) run.WithTaxonomies([]*sarif.ToolComponent{taxonomy})