From 310da2a20192d5ee49dcc94bc9a161e5e8c71a28 Mon Sep 17 00:00:00 2001 From: Christopher Milan Date: Sat, 22 Nov 2025 17:47:10 -0500 Subject: [PATCH] remove hashFiles in setup-tinygrad (#13423) * fix hashFiles in setup-tinygrad on macos * remove hashFiles altogether --- .github/actions/setup-tinygrad/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-tinygrad/action.yml b/.github/actions/setup-tinygrad/action.yml index 82be54d405..e3a4c86814 100644 --- a/.github/actions/setup-tinygrad/action.yml +++ b/.github/actions/setup-tinygrad/action.yml @@ -61,7 +61,7 @@ runs: uses: actions/cache@v4 with: path: ${{ github.workspace }}/.venv - key: venv-${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-${{ inputs.deps }}-${{ inputs.pydeps }}-${{ hashFiles('**/pyproject.toml') }}-${{ env.CACHE_VERSION }} + key: venv-${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-${{ inputs.deps }}-${{ inputs.pydeps }}-${{ env.CACHE_VERSION }} # **** Caching downloads ****