From bde8c7ee612389b95a3ad26c74f1b4e4dc32e9a0 Mon Sep 17 00:00:00 2001 From: strtgbb <146047128+strtgbb@users.noreply.github.com> Date: Tue, 23 Sep 2025 09:58:30 -0400 Subject: [PATCH] grype scan: filter out json that is somehow in the version_helper output --- .github/workflows/grype_scan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/grype_scan.yml b/.github/workflows/grype_scan.yml index b6781c386f94..eaa831a84ca9 100644 --- a/.github/workflows/grype_scan.yml +++ b/.github/workflows/grype_scan.yml @@ -61,7 +61,7 @@ jobs: TAG_SUFFIX: ${{ inputs.tag-suffix }} SPECIFIED_VERSION: ${{ inputs.version }} run: | - python3 ./tests/ci/version_helper.py | grep = | tee /tmp/version_info + python3 ./tests/ci/version_helper.py | grep = | grep -v , | tee /tmp/version_info source /tmp/version_info if [ -z "$SPECIFIED_VERSION" ]; then VERSION=$CLICKHOUSE_VERSION_STRING