Skip to content

Commit

Permalink
CodeQL: use "correlationGuid" for finding ID (#937)
Browse files Browse the repository at this point in the history
CodeQL: use "correlationGuid" for rule ID
  • Loading branch information
drdavella authored Dec 3, 2024
1 parent e257a0c commit 7f19192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codemodder/codeql.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def from_sarif(
finding=Finding(
id=rule_id,
rule=Rule(
id=rule_id,
id=sarif_result.get("correlationGuid", rule_id),
name=rule_id,
# TODO: map to URL
# url=,
Expand Down

0 comments on commit 7f19192

Please sign in to comment.