Skip to content

Commit 8988b91

Browse files
committed
chore: ignore check CVE-2025-66626
1 parent c8f8ca3 commit 8988b91

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/utils/manifests_charts_image_check.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
MANIFESTS_FILE=${1:-""}
33
ADD_CHART=${2:-"true"}
44
CHECK_ENGINE_FILE=${3:-"./fountain/hack/check-engine-images.py"}
5+
SKIP_DELETE_FILE=${4:-""}
56

67

78
add_chart_repo() {
@@ -31,8 +32,10 @@ check_service_version_images() {
3132
images=""
3233
if [[ -f "${check_engine_result_file}" ]]; then
3334
images=$(yq e '.'${chart_name_tmp}'[0].images[]' ${check_engine_result_file})
34-
rm -rf ${check_engine_result_file}
35-
rm -rf charts/${chart_name_tmp}-${chart_version_tmp}.tgz
35+
if [[ -z "${SKIP_DELETE_FILE}" || "${check_engine_result_file}" != *"${SKIP_DELETE_FILE}"* ]]; then
36+
rm -rf ${check_engine_result_file}
37+
rm -rf charts/${chart_name_tmp}-${chart_version_tmp}.tgz
38+
fi
3639
fi
3740
repository=""
3841
for repository in $( echo "$images" ); do

.trivyignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
CVE-2025-32445
33
CVE-2025-62156
44
CVE-2025-62157
5+
CVE-2025-66626

0 commit comments

Comments
 (0)