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
2 changes: 1 addition & 1 deletion .github/workflows/ruby-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: vendor/bundle
key: >
Expand Down
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:

- name: Restore episode voice cache
id: cache-voice
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: episodes/${{ inputs.episode }}-*/voiceovers
key: ${{ env.VOICEOVER_CACHE_KEY }}
Expand All @@ -65,7 +65,7 @@ runs:

- name: Restore videos cache
id: cache-videos
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: output/${{ inputs.episode }}-*/videos/*.mp4
key: ${{ env.VIDEO_CACHE_KEY }}
Expand Down Expand Up @@ -117,15 +117,15 @@ runs:

- name: Save episode voiceover cache
if: steps.screenkit.outputs.result == 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: episodes/${{ inputs.episode }}-*/voiceovers
key: ${{ env.VOICEOVER_CACHE_KEY }}
enableCrossOsArchive: true

- name: Save video recordings cache
if: steps.screenkit.outputs.result == 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: output/${{ inputs.episode }}-*/videos/*.mp4
key: ${{ env.VIDEO_CACHE_KEY }}
Expand Down
Loading