Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from tjgurwara99/tjgurwara99/fix-incorrect-help…
Browse files Browse the repository at this point in the history
…-uri

Fix incorrect help uri from SARIF
  • Loading branch information
tjgurwara99 authored Mar 17, 2023
2 parents e34e1c8 + 6a337c9 commit 99630b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/sarif/sarif.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func FromResult(r *vulncheck.Result) (*Log, error) {
rule := ReportingDescriptor{
ID: ruleID,
Name: "VulnerablePackage",
HelpURI: fmt.Sprintf("https://osv.dev/vulnerability/%s", strings.ToLower(v.OSV.ID)),
HelpURI: fmt.Sprintf("https://osv.dev/vulnerability/%s", v.OSV.ID),
ShortDescription: &MultiFormatMessageString{
Text: shortDescription,
},
Expand Down

0 comments on commit 99630b0

Please sign in to comment.