Skip to content

Commit

Permalink
Fail the release manager pipeline and create security vulnerability i…
Browse files Browse the repository at this point in the history
…ssues or move them to TODO state if already present (#1151)

Aqua remotely exploitable security vulnerability functionality.

Co-authored-by: zxBCN Valeriu_Tuguran,Constantin (IT EDP) EXTERNAL <[email protected]>
  • Loading branch information
2 people authored and BraisVQ committed Oct 23, 2024
1 parent 6830786 commit 3264998
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

### Changed
* Enhance SSDS Document Generation Performance using New Atlassian APIs ([#1084](https://github.com/opendevstack/ods-jenkins-shared-library/issues/1084))
* Deprecation of vuln-type and scanners config in Trivy ([#1150](https://github.com/opendevstack/ods-jenkins-shared-library/issues/1150))
* Use riskPriority value as number instead of its value as text in RA ([#1156](https://github.com/opendevstack/ods-jenkins-shared-library/pull/1156))

### Fixed
* Fix Tailor deployment drifts for D, Q envs ([#1055](https://github.com/opendevstack/ods-jenkins-shared-library/pull/1055))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ class LeVADocumentUseCase extends DocGenUseCase {
probabilityOfOccurrence: probabilityOfOccurrence ? probabilityOfOccurrence."short" : "None",
severityOfImpact: severityOfImpact ? severityOfImpact."short" : "None",
probabilityOfDetection: probabilityOfDetection ? probabilityOfDetection."short" : "None",
riskPriority: riskPriority ? riskPriority."short" : "None",
riskPriority: riskPriority ? riskPriority."value" : "None",
riskPriorityNumber: (r.riskPriorityNumber != null) ? r.riskPriorityNumber : "N/A",
riskComment: r.riskComment ? r.riskComment : "N/A",
]
Expand Down

0 comments on commit 3264998

Please sign in to comment.