From 5d061c23e52d1a19e9d648d0d531cb65f8230610 Mon Sep 17 00:00:00 2001 From: romeroalx Date: Mon, 6 Oct 2025 12:50:31 +0200 Subject: [PATCH] gh actions - misc-dailies: fix pip name normalization when validating hashes --- .github/workflows/misc-dailies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/misc-dailies.yml b/.github/workflows/misc-dailies.yml index 1fa9646e99..9a14fbfc42 100644 --- a/.github/workflows/misc-dailies.yml +++ b/.github/workflows/misc-dailies.yml @@ -136,7 +136,7 @@ jobs: env: ID: ${{ steps.proxpi-docker.outputs.id }} run: | - docker logs "${ID}" 2>&1 | grep whl | awk '{print $8}' | cut -d "/" -f 4 | awk -F'-' '{print $1"=="$2}' | sort -u --ignore-case | sed 's/_/-/' | egrep -v "pip==|setuptools==" > /tmp/proxpi.log + docker logs "${ID}" 2>&1 | grep whl | awk '{print $8}' | cut -d "/" -f 4 | awk -F'-' '{print $1"=="$2}' | sort -u --ignore-case | sed 's/_/-/g' | egrep -v "pip==|setuptools==" > /tmp/proxpi.log cat /tmp/proxpi.log - name: check only listed packages were installed run: for i in `cat /tmp/proxpi.log`; do grep -qq -i $i ${REQUIREMENTS_FILE} || ( echo "$i not found" && exit 1 ); done -- 2.47.3