Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:

- name: Cache wkhtmltopdf package
if: ${{ matrix.tests.ebook }}
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: wkhtmltopdf
key: wkhtmltopdf-${{ hashFiles('script/gh-actions/ebook_converters.sh') }}
Expand All @@ -121,11 +121,11 @@ jobs:

- name: Cache VCR cassettes
if: ${{ matrix.tests.vcr }}
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: features/cassette_library

# Unfortunately, the actions/cache@v2 version doesn't allow the cache
# Unfortunately, the actions/cache@v3.0.11 version doesn't allow the cache
# key to be overwritten if there's an exact match. So instead we add
# a unique identifier to the key to always force a "cache miss", and
# restore from related keys to make sure that we still get to load a
Expand Down