From 501d95503b7cdf3ea7205b57c198bf3b6fd0d933 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 00:19:23 +0000 Subject: [PATCH] ci(deps): Bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/github-script](https://github.com/actions/github-script). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `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) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/_build-backend.yml | 18 +++++++++--------- .github/workflows/main.yml | 4 ++-- .github/workflows/warm-cache.yml | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/_build-backend.yml b/.github/workflows/_build-backend.yml index a1c5664..dc1258d 100644 --- a/.github/workflows/_build-backend.yml +++ b/.github/workflows/_build-backend.yml @@ -49,7 +49,7 @@ jobs: runs-on: ${{ inputs.runner }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Linux dependencies if: inputs.platform == 'linux' @@ -148,7 +148,7 @@ jobs: - name: Cache vcpkg FFmpeg (Windows) if: inputs.platform == 'windows' - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-vcpkg-ffmpeg-windows with: path: | @@ -161,7 +161,7 @@ jobs: - name: Cache vcpkg FFmpeg (Unix) if: inputs.platform != 'windows' - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-vcpkg-ffmpeg-unix with: path: | @@ -226,7 +226,7 @@ jobs: - name: Cache cargo and build artifacts id: cache-restore - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/ @@ -237,7 +237,7 @@ jobs: - name: Cache cargo-packager (Unix) if: inputs.platform != 'windows' id: tools-cache-restore-unix - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/bin/cargo-packager @@ -246,7 +246,7 @@ jobs: - name: Cache cargo-packager (Windows) if: inputs.platform == 'windows' id: tools-cache-restore-win - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/bin/cargo-packager.exe @@ -579,7 +579,7 @@ jobs: - name: Upload Windows artifacts if: inputs.platform == 'windows' && inputs.cache_only != true - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: windows-${{ inputs.backend }} path: | @@ -591,7 +591,7 @@ jobs: - name: Upload Linux artifacts if: inputs.platform == 'linux' && inputs.cache_only != true - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: linux-${{ inputs.backend }}-combined path: | @@ -603,7 +603,7 @@ jobs: - name: Upload macOS artifacts if: inputs.platform == 'macos' && inputs.cache_only != true - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: macos-${{ inputs.backend }}-combined path: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a8bc777..3c8c2e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Wait for warm-cache workflow to complete - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const maxWaitMinutes = 60; @@ -93,7 +93,7 @@ jobs: on-main: ${{ steps.check.outputs.on-main }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # Fetch all history to check branches diff --git a/.github/workflows/warm-cache.yml b/.github/workflows/warm-cache.yml index abbbae9..c4cad2c 100644 --- a/.github/workflows/warm-cache.yml +++ b/.github/workflows/warm-cache.yml @@ -25,7 +25,7 @@ jobs: on-main: ${{ steps.check.outputs.on-main }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Check if tag is on main branch @@ -74,7 +74,7 @@ jobs: steps: - name: Check cache existence and age (12h threshold) id: check - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | if (context.eventName === 'workflow_dispatch') {