-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
I'm evaluating the action together with GitHub Advanced Security for a C# project. This works mostly fine, but the code locations can't be resolved due to the incorrect casing.
The SARIF output from the action converts all physicalLocation
s to lowercase. The logicalLocations
don't have this issue:
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": "acme.blazor/components/editor/acmeeditor.razor"
},
"region": {
"startLine": 39
}
},
"logicalLocations": [
{
"name": "BuildRenderTree",
"fullyQualifiedName": "acme_blazor_dll.acme.Blazor.Components.acmeEditor.BuildRenderTree",
"kind": "function"
},
{
"fullyQualifiedName": "microsoft_aspnetcore_components_dll.Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.AddContent",
"kind": "member",
"parentIndex": 0
}
]
}
],
The actual file name in this case is Acme.Blazor/Components/Editor/AcmeEditor.razor
.
I appreciate your help. Thanks!
Metadata
Metadata
Assignees
Labels
No labels