From cc5fd9cebcc339f545af505d5b5b1efedf6fe727 Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Sat, 25 Jan 2025 09:54:24 +0100 Subject: [PATCH] fix(ci): use the runner architecture in the cache key (#533) --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 19b9b820..69b9601e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,8 +52,8 @@ jobs: uses: actions/cache@v4 with: path: ~/.cache/auditwheel_tests - key: python${{ matrix.python }}-${{ hashFiles('**/test_manylinux.py') }} - restore-keys: python${{ matrix.python }}- + key: python${{ matrix.python }}-${{ runner.arch }}-${{ hashFiles('**/test_manylinux.py') }} + restore-keys: python${{ matrix.python }}-${{ runner.arch }}- - name: Install CPython ${{ matrix.python }} uses: actions/setup-python@v5 with: