Skip to content

Commit cc5fd9c

Browse files
authored
fix(ci): use the runner architecture in the cache key (#533)
1 parent 595bc5b commit cc5fd9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
uses: actions/cache@v4
5353
with:
5454
path: ~/.cache/auditwheel_tests
55-
key: python${{ matrix.python }}-${{ hashFiles('**/test_manylinux.py') }}
56-
restore-keys: python${{ matrix.python }}-
55+
key: python${{ matrix.python }}-${{ runner.arch }}-${{ hashFiles('**/test_manylinux.py') }}
56+
restore-keys: python${{ matrix.python }}-${{ runner.arch }}-
5757
- name: Install CPython ${{ matrix.python }}
5858
uses: actions/setup-python@v5
5959
with:

0 commit comments

Comments
 (0)