Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
# instead of each of this job's ~28 matrix instances re-fetching the same
# ~33 files from the mirror.
- name: Cache full_corpus fixtures
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: tests/full_corpus/.cache
key: cdf-corpus-v1-${{ hashFiles('tests/full_corpus/test.py') }}
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
# instead of each of this job's matrix instances re-fetching the same
# ~33 files from the mirror.
- name: Cache full_corpus fixtures
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: tests/full_corpus/.cache
key: cdf-corpus-v1-${{ hashFiles('tests/full_corpus/test.py') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-with-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# fetch_cdf): same key everywhere so one populated cache serves them all,
# instead of each job re-fetching the same ~33 files from the mirror.
- name: Cache full_corpus fixtures
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: tests/full_corpus/.cache
key: cdf-corpus-v1-${{ hashFiles('tests/full_corpus/test.py') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-with-nasa-cdf-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# URL below) only on a deliberate version bump.
- name: Cache the NASA CDF reference library build
id: nasa-cdf-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: nasa-cdf
key: nasa-cdf-toolkit-3.9.2-${{ runner.os }}
Expand All @@ -42,7 +42,7 @@ jobs:
# fetch_cdf): same key everywhere so one populated cache serves them all,
# instead of each job re-fetching the same ~33 files from the mirror.
- name: Cache full_corpus fixtures
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: tests/full_corpus/.cache
key: cdf-corpus-v1-${{ hashFiles('tests/full_corpus/test.py') }}
Expand Down
Loading