From c78a342bdc6b136036f2f1b12d2477094a5cd301 Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Mon, 6 Jul 2026 11:30:33 +0100 Subject: [PATCH] CI: Don't Python make venv on cache hit --- .github/actions/setup-venv/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-venv/action.yml b/.github/actions/setup-venv/action.yml index f1d2b3024..3feb9c5be 100644 --- a/.github/actions/setup-venv/action.yml +++ b/.github/actions/setup-venv/action.yml @@ -43,6 +43,7 @@ runs: key: ${{ steps.cachekey.outputs.key }} - name: Create Python venv + if: ${{ steps.venv.outputs.cache-hit != 'true' }} shell: bash working-directory: ${{ inputs.repo }} run: make venv