PR #21566 opened by Timo Rothenpieler (BtbN) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21566 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21566.patch
>From 5ce18d584be35eb94f31e7b56f6cde28a635a01e Mon Sep 17 00:00:00 2001 From: Timo Rothenpieler <[email protected]> Date: Sat, 24 Jan 2026 01:47:03 +0100 Subject: [PATCH] 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 -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
