Skip to content

Commit 8a8f9ef

Browse files
committed
work around deprecated behavior
1 parent a7192e3 commit 8a8f9ef

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,17 @@ jobs:
7979
python -c 'import xarray_array_testing'
8080
8181
- name: Restore cached hypothesis directory
82-
uses: actions/cache@v4
82+
uses: actions/cache/restore@v4
8383
with:
8484
path: .hypothesis/
8585
key: cache-hypothesis
86-
enableCrossOsArchive: true
87-
save-always: true
8886

8987
- name: Run tests
9088
run: |
9189
python -m pytest --cov=xarray_array_testing
90+
91+
- name: Cache hypothesis directory
92+
uses: actions/cache/save@v4
93+
with:
94+
path: .hypothesis/
95+
key: cache-hypothesis

0 commit comments

Comments
 (0)