Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:

- name: Restore audio data from cache
id: cache-audio
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: cached-audio/
key: audio-data-${{ hashFiles('telar-content/objects/*.mp3', 'telar-content/objects/*.ogg', 'telar-content/objects/*.m4a', 'telar-content/spreadsheets/objects.csv') }}
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:

- name: Save audio data to cache
if: steps.detect-audio-changes.outputs.needs_audio == 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: cached-audio/
key: audio-data-${{ hashFiles('telar-content/objects/*.mp3', 'telar-content/objects/*.ogg', 'telar-content/objects/*.m4a', 'telar-content/spreadsheets/objects.csv') }}
Expand All @@ -214,7 +214,7 @@ jobs:

- name: Restore IIIF tiles from cache
id: cache-iiif
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: cached-iiif/
# v0.5.0: Flattened image directory structure - now all images in telar-content/objects/
Expand Down Expand Up @@ -317,7 +317,7 @@ jobs:

- name: Save IIIF tiles to cache
if: steps.detect-changes.outputs.needs_iiif == 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: cached-iiif/
# v0.5.0: Flattened image directory structure
Expand Down