Skip to content

Commit f1c1430

Browse files
committed
Fix restore-keys for cache files cache
1 parent e8d974a commit f1c1430

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/PythonChallengeSolutions.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ jobs:
3535
with:
3636
path: "*.cache"
3737
key: ${{ runner.os }}-cache-files-${{ matrix.python-version }}-${{ hashFiles('*.cache') }}
38-
restore-keys: ${{ runner.os }}-cache-files-${{ matrix.python-version }}-${{ hashFiles('*.cache') }}
39-
${{ runner.os }}-cache-${{ matrix.python-version }}-
38+
restore-keys: |
39+
${{ runner.os }}-cache-files-${{ matrix.python-version }}-${{ hashFiles('*.cache') }}
40+
${{ runner.os }}-cache-files-${{ matrix.python-version }}-
41+
${{ runner.os }}-cache-files-
4042
${{ runner.os }}-cache-
4143
${{ runner.os }}-
4244
- name: setup-ci

0 commit comments

Comments
 (0)