From 6592bc87ba8c13ee828f4b1a4cacca8404adedd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 19:51:28 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ruby-tests.yml | 2 +- action.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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 }}