Chore(deps): Bump actions/cache from 4 to 5 (#2841)
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Thu, 18 Dec 2025 21:13:04 +0000 (22:13 +0100)
committerGitHub <noreply@github.com>
Thu, 18 Dec 2025 21:13:04 +0000 (22:13 +0100)
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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marcel van der Veldt <m.vanderveldt@outlook.com>
.github/workflows/test.yml

index 7b35c8d02e08d28cb18b9526810b4bafda4c7620..4cf9a17b88f96c371f312daf828ff668f10d4260 100644 (file)
@@ -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') }}