From 5b0fb228f3dae309287c525d20dd2f567a3b0ddc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 22:13:04 +0100 Subject: [PATCH] Chore(deps): Bump actions/cache from 4 to 5 (#2841) Bumps [actions/cache](https://github.com/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) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marcel van der Veldt --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7b35c8d0..4cf9a17b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: python-version: "3.12" # Cache apt .deb files to speed up ffmpeg installation (in home to avoid permission issues). - name: Cache apt packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/apt-packages key: apt-ffmpeg-${{ runner.os }} @@ -42,7 +42,7 @@ jobs: - name: Install uv run: pip install uv - name: Cache uv packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/uv key: uv-${{ runner.os }}-3.12-${{ hashFiles('requirements_all.txt', 'pyproject.toml') }} @@ -69,7 +69,7 @@ jobs: python-version: ${{ matrix.python-version }} # Cache apt .deb files to speed up ffmpeg installation (in home to avoid permission issues). - name: Cache apt packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/apt-packages key: apt-ffmpeg-${{ runner.os }} @@ -83,7 +83,7 @@ jobs: - name: Install uv run: pip install uv - name: Cache uv packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/uv key: uv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements_all.txt', 'pyproject.toml') }} -- 2.34.1