Skip to content

Commit

Permalink
[ODS-6453] Update Security Vulnerability Check For Release Tags (#1118)
Browse files Browse the repository at this point in the history
  • Loading branch information
semalaiappan authored Aug 18, 2024
1 parent 579545e commit fc54ba0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
tag: ["v5.3-patch5","v6.2","v7.2","v7.1-patch2"]
tag: ["v5.4","v6.2","v7.2","v7.1-patch2"]
name: ${{ matrix.tag }} Security-Vulnerabilities Check

steps:
Expand All @@ -42,7 +42,7 @@ jobs:
$logContent = Get-Content -Path "build.log" -Raw
# Check for vulnerabilities in the log output
if ($logContent -match "critical|high|moderate") {
if ($logContent -match "critical|high") {
Write-Error "Security Vulnerabilities found"
exit 1
}
Expand Down

0 comments on commit fc54ba0

Please sign in to comment.