We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad73a8b commit ca381caCopy full SHA for ca381ca
pluginkit/evaluation_orchestrator.go
@@ -221,9 +221,8 @@ func (v *EvaluationOrchestrator) WriteResults() error {
221
// Use "README.md" as artifactURI for repository-level assessments
222
// GitHub Code Scanning requires PhysicalLocation, and "README.md" is a common file path
223
// that satisfies this requirement (as recommended in gemara's ToSARIF documentation)
224
- artifactURI := "README.md"
225
for _, suite := range v.Evaluation_Suites {
226
- sarifBytes, sarifErr := suite.EvaluationLog.ToSARIF(artifactURI, suite.catalog)
+ sarifBytes, sarifErr := suite.EvaluationLog.ToSARIF("", suite.catalog)
227
if sarifErr != nil {
228
err = errMod(sarifErr, "wr25")
229
break
0 commit comments