Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jas/analyzermanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
const (
ApplicabilityFeatureId = "contextual_analysis"
AnalyzerManagerZipName = "analyzerManager.zip"
defaultAnalyzerManagerVersion = "1.27.0"
defaultAnalyzerManagerVersion = "1.28.0"
analyzerManagerDownloadPath = "xsc-gen-exe-analyzer-manager-local/v1"
analyzerManagerDirName = "analyzerManager"
analyzerManagerExecutableName = "analyzerManager"
Expand Down
5 changes: 5 additions & 0 deletions utils/results/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ func ForEachJasIssue(runs []*sarif.Run, entitledForJas bool, handler ParseJasIss
}
for _, run := range runs {
for _, result := range run.Results {
if result.Kind == "informational" {
// The specified rule was evaluated and produced a purely informational result that does not indicate the presence of a problem
log.Verbose(fmt.Sprintf("Skipping informational result with rule id: %s", sarifutils.GetResultRuleId(result)))
continue
}
severity, err := severityutils.ParseSeverity(result.Level, true)
if err != nil {
return err
Expand Down
Loading