This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new 4f77473b46 forgejo/workflows: update actions
4f77473b46 is described below
commit 4f77473b4601243886e8a8a95ab05fb10f37a3c8
Author: Timo Rothenpieler <[email protected]>
AuthorDate: Sat Jan 24 01:47:03 2026 +0100
Commit: Timo Rothenpieler <[email protected]>
CommitDate: Sat Jan 24 20:05:07 2026 +0000
forgejo/workflows: update actions
---
.forgejo/workflows/autolabel.yml | 6 +++---
.forgejo/workflows/lint.yml | 4 ++--
.forgejo/workflows/test.yml | 12 ++++++------
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/.forgejo/workflows/autolabel.yml b/.forgejo/workflows/autolabel.yml
index d2408fcb26..d06b8f3c21 100644
--- a/.forgejo/workflows/autolabel.yml
+++ b/.forgejo/workflows/autolabel.yml
@@ -15,15 +15,15 @@ jobs:
if: ${{ github.event.sender.login != 'ffmpeg-devel' }}
steps:
- name: Checkout
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
- name: Label by file-changes
- uses: https://github.com/actions/labeler@v5
+ uses: actions/labeler@v6
if: ${{ forge.event_name == 'pull_request_target' }}
with:
configuration-path: .forgejo/labeler/labeler.yml
repo-token: ${{ secrets.AUTOLABELER_TOKEN }}
- name: Label by title-match
- uses: https://github.com/actions/github-script@v7
+ uses: actions/github-script@v8
with:
script: |
const script = require('.forgejo/labeler/labeler.js')
diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml
index 58dcf99043..32237eecc7 100644
--- a/.forgejo/workflows/lint.yml
+++ b/.forgejo/workflows/lint.yml
@@ -15,7 +15,7 @@ jobs:
runs-on: utilities
steps:
- name: Checkout
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
- name: Install pre-commit CI
id: install
run: |
@@ -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@v4
+ uses: actions/cache@v5
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 ffd1123f9c..a9c9978e53 100644
--- a/.forgejo/workflows/test.yml
+++ b/.forgejo/workflows/test.yml
@@ -28,7 +28,7 @@ jobs:
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
- name: Configure
run: |
./configure --enable-gpl --enable-nonfree --enable-memory-poisoning
--assert-level=2 \
@@ -41,7 +41,7 @@ jobs:
run: make -j$(nproc)
- name: Restore Cached Fate-Suite
id: cache
- uses: actions/cache/restore@v4
+ uses: actions/cache/restore@v5
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@v4
+ uses: actions/cache/save@v5
if: ${{ format('fate-suite-{0}', steps.fate.outputs.hash) !=
steps.cache.outputs.cache-matched-key }}
with:
path: fate-suite
@@ -74,7 +74,7 @@ jobs:
container: ${{ matrix.image }}
steps:
- name: Checkout
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
- name: Configure
run: |
./configure --pkg-config-flags="--static" $FFBUILD_TARGET_FLAGS
$FF_CONFIGURE \
@@ -89,7 +89,7 @@ jobs:
run: make -j$(nproc)
- name: Restore Cached Fate-Suite
id: cache
- uses: actions/cache/restore@v4
+ uses: actions/cache/restore@v5
with:
path: fate-suite
key: fate-suite
@@ -101,7 +101,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@v4
+ uses: actions/cache/save@v5
if: ${{ format('fate-suite-{0}', steps.fate.outputs.hash) !=
steps.cache.outputs.cache-matched-key }}
with:
path: fate-suite
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]