From 0fbb3730ac29db15b08ff306247055be68678532 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 11 Jul 2026 15:30:26 +0000 Subject: [PATCH] Mirror of savonet/liquidsoap#5246: Update actions/cache action to v6 --- .github/actions/build-ffmpeg/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/build-ffmpeg/action.yml b/.github/actions/build-ffmpeg/action.yml index d8ba79de..a65ac4b6 100644 --- a/.github/actions/build-ffmpeg/action.yml +++ b/.github/actions/build-ffmpeg/action.yml @@ -13,7 +13,7 @@ runs: steps: - name: Restore FFmpeg cache id: cache-ffmpeg - uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6 with: path: ffmpeg key: ffmpeg-cache-${{ hashFiles('.github/actions/build-ffmpeg/action.yml') }}-${{ inputs.version }}-${{ runner.os }} @@ -62,7 +62,7 @@ runs: make -j4 - name: Save FFmpeg cache if: steps.cache-ffmpeg.outputs.cache-hit != 'true' - uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6 with: path: ffmpeg key: ffmpeg-cache-${{ hashFiles('.github/actions/build-ffmpeg/action.yml') }}-${{ inputs.version }}-${{ runner.os }}