Skip to content

Commit 0669750

Browse files
committed
fix(ci): MacOS runner jobs fail on cache keys
1 parent 5f1f96a commit 0669750

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
path: |
6262
.venv
63-
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
63+
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
6464
restore-keys: |
6565
${{ runner.os }}-pip-
6666
@@ -179,7 +179,7 @@ jobs:
179179
~/.cargo/registry/cache/
180180
~/.cargo/git/db/
181181
target/
182-
key: ${{ runner.os }}-${{ matrix.target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
182+
key: ${{ runner.os }}-${{ matrix.target }}-cargo-${{ hashFiles('Cargo.lock') }}
183183
restore-keys: ${{ runner.os }}-${{ matrix.target }}-cargo-
184184

185185
- name: Set up Python
@@ -192,7 +192,7 @@ jobs:
192192
with:
193193
path: |
194194
.venv
195-
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
195+
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
196196
restore-keys: |
197197
${{ runner.os }}-pip-
198198
@@ -321,7 +321,7 @@ jobs:
321321
with:
322322
path: |
323323
.venv
324-
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
324+
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
325325
restore-keys: |
326326
${{ runner.os }}-pip-${{ matrix.python-version }}-
327327
@@ -432,7 +432,7 @@ jobs:
432432
with:
433433
path: |
434434
.venv
435-
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
435+
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
436436
restore-keys: |
437437
${{ runner.os }}-pip-
438438

0 commit comments

Comments
 (0)