Skip to content

Commit fac3b02

Browse files
authored
generated an actual guid so that it respects the github sarif spec. Replaced the all-zeros GUID with 0c8bf036-487d-590a-8c22-c41f287b1560 — a deterministic UUID v5 derived from https://boostsecurity.io/boost/sast. It satisfies the SARIF schema pattern requiring a valid RFC 4122 UUID (#416)
1 parent 984640c commit fac3b02

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

formatters/sarif/sarif.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func (f *Format) Format(ctx context.Context, packages []*models.PackageInsights)
7676
taxonomyRef := sarif.NewToolComponentReference().
7777
WithName("boost/sast").
7878
WithIndex(0).
79-
WithGuid("00000000-0000-0000-0000-000000000000")
79+
WithGuid("0c8bf036-487d-590a-8c22-c41f287b1560")
8080
run.Tool.Driver.WithSupportedTaxonomies([]*sarif.ToolComponentReference{taxonomyRef})
8181

8282
run.WithTaxonomies([]*sarif.ToolComponent{taxonomy})

0 commit comments

Comments
 (0)