diff --git a/.github/workflows/ruby-tests.yml b/.github/workflows/ruby-tests.yml index f57855a..93f7408 100644 --- a/.github/workflows/ruby-tests.yml +++ b/.github/workflows/ruby-tests.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: vendor/bundle key: > diff --git a/action.yml b/action.yml index 1a5c440..5b0f84b 100644 --- a/action.yml +++ b/action.yml @@ -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 }} @@ -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 }} @@ -117,7 +117,7 @@ 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 }} @@ -125,7 +125,7 @@ runs: - 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 }}