From 2d60442f453b86160fcf4e0d193553139121668b Mon Sep 17 00:00:00 2001 From: Carlo Goetz Date: Wed, 25 Feb 2026 12:12:28 +0100 Subject: [PATCH] fix(cd) disable uv cache prior run error'd with: ``` No cache found at: /home/runner/work/_temp/setup-uv-cache Error: Cache path /home/runner/work/_temp/setup-uv-cache does not exist on disk. This likely indicates that there are no dependencies to cache. Consider disabling the cache input if it is not needed. ``` so we are disabling the cache --- .github/workflows/cd.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 3a20b8e3..3de3d164 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -20,6 +20,7 @@ jobs: with: version: "0.10.4" python-version: "3.9" + enable-cache: "false" - name: Push tag for each updated package env: GH_TOKEN: ${{ secrets.RENOVATE_TOKEN }}