PR #23569 opened by Project516
URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23569
Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23569.patch

Signed-off-by: project516 <[email protected]

# Summary of changes

update actions/cache to v6

https://github.com/actions/cache/releases/tag/v6.0.0

upstream package updates

<!--
If this PR requires new FATE test samples, attach them to the PR and
list their target paths below (relative to the fate-suite root).

Attached filenames must match the sample's filename:

```fate-samples
# e.g. vorbis/new-sample.ogg
```
-->



>From 08dd09cb7a89d5f1f8cefd40e3942d634c392db9 Mon Sep 17 00:00:00 2001
From: project516 <[email protected]>
Date: Tue, 23 Jun 2026 17:05:34 -0500
Subject: [PATCH] forgejo/workflows: update cache to v6

Signed-off-by: project516 <[email protected]
---
 .forgejo/workflows/lint.yml | 2 +-
 .forgejo/workflows/test.yml | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml
index 32237eecc7..8bcd5a1fa5 100644
--- a/.forgejo/workflows/lint.yml
+++ b/.forgejo/workflows/lint.yml
@@ -24,7 +24,7 @@ jobs:
             ~/pre-commit/bin/pip install pre-commit
             echo "envhash=$({ python3 --version && cat 
.forgejo/pre-commit/config.yaml; } | sha256sum | cut -d' ' -f1)" >> 
$FORGEJO_OUTPUT
       - name: Cache
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.cache/pre-commit
           key: pre-commit-${{ steps.install.outputs.envhash }}
diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml
index 3af1522b88..78912d08ad 100644
--- a/.forgejo/workflows/test.yml
+++ b/.forgejo/workflows/test.yml
@@ -41,7 +41,7 @@ jobs:
         run: make -j$(nproc)
       - name: Restore Cached Fate-Suite
         id: cache
-        uses: actions/cache/restore@v5
+        uses: actions/cache/restore@v6
         with:
           path: fate-suite
           key: fate-suite
@@ -53,7 +53,7 @@ jobs:
           make fate-rsync SAMPLES=$PWD/fate-suite
           echo "hash=$(find fate-suite -type f -printf "%P %s %T@\n" | sort | 
sha256sum | cut -d' ' -f1)" >> $FORGEJO_OUTPUT
       - name: Cache Fate-Suite
-        uses: actions/cache/save@v5
+        uses: actions/cache/save@v6
         if: ${{ format('fate-suite-{0}', steps.fate.outputs.hash) != 
steps.cache.outputs.cache-matched-key }}
         with:
           path: fate-suite
@@ -102,7 +102,7 @@ jobs:
         run: make -C build -j$(nproc)
       - name: Restore Cached Fate-Suite
         id: cache
-        uses: actions/cache/restore@v5
+        uses: actions/cache/restore@v6
         with:
           path: fate-suite
           key: fate-suite
@@ -114,7 +114,7 @@ jobs:
           make -C build fate-rsync SAMPLES=$PWD/fate-suite
           echo "hash=$(find fate-suite -type f -printf "%P %s %T@\n" | sort | 
sha256sum | cut -d' ' -f1)" >> $FORGEJO_OUTPUT
       - name: Cache Fate-Suite
-        uses: actions/cache/save@v5
+        uses: actions/cache/save@v6
         if: ${{ format('fate-suite-{0}', steps.fate.outputs.hash) != 
steps.cache.outputs.cache-matched-key }}
         with:
           path: fate-suite
-- 
2.52.0

_______________________________________________
ffmpeg-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to