From fd49bb512de38b82d34a8ce224d87989730b437f Mon Sep 17 00:00:00 2001 From: George Hotz <72895+geohot@users.noreply.github.com> Date: Mon, 15 Dec 2025 10:47:17 -0500 Subject: [PATCH] download cache by job (#13703) --- .github/actions/setup-tinygrad/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-tinygrad/action.yml b/.github/actions/setup-tinygrad/action.yml index 934e3f811a..fb9493862d 100644 --- a/.github/actions/setup-tinygrad/action.yml +++ b/.github/actions/setup-tinygrad/action.yml @@ -70,13 +70,13 @@ runs: uses: actions/cache@v4 with: path: ~/.cache/tinygrad/downloads/ - key: downloads-cache-${{ inputs.key }}-${{ env.CACHE_VERSION }} + key: downloads-${{ github.job }}-${{ inputs.key }}-${{ env.CACHE_VERSION }} - name: Cache downloads (macOS) if: inputs.key != '' && runner.os == 'macOS' uses: actions/cache@v4 with: path: ~/Library/Caches/tinygrad/downloads/ - key: osx-downloads-cache-${{ inputs.key }}-${{ env.CACHE_VERSION }} + key: downloads-${{ github.job }}-${{ inputs.key }}-${{ env.CACHE_VERSION }} # **** Python deps ****