From b84bd115cb85ff7e94e177bc7cd0c42f7d98d4f3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 12:00:48 +0000 Subject: [PATCH] chore: Bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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] --- .github/workflows/extension-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/extension-test.yml b/.github/workflows/extension-test.yml index 74239e6..a921fbd 100644 --- a/.github/workflows/extension-test.yml +++ b/.github/workflows/extension-test.yml @@ -87,7 +87,7 @@ jobs: fi - name: Cache quibble docker image - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: /home/runner/docker-images/${{ env.QUIBBLE_DOCKER_IMAGE }} key: ${{ env.QUIBBLE_DOCKER_IMAGE }}:${{ env.QUIBBLE_DOCKER_LATEST_TAG }} @@ -100,13 +100,13 @@ jobs: fi - name: Cache quibble coverage docker image if: matrix.stage == 'coverage' - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: /home/runner/docker-images/${{ env.COVERAGE_DOCKER_IMAGE }} key: ${{ env.COVERAGE_DOCKER_IMAGE }}:${{ env.COVERAGE_DOCKER_LATEST_TAG }} - name: Cache phan docker image if: matrix.stage == 'phan' - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: /home/runner/docker-images/${{ env.PHAN_DOCKER_IMAGE }} key: ${{ env.PHAN_DOCKER_IMAGE }}:${{ env.PHAN_DOCKER_LATEST_TAG }} @@ -128,7 +128,7 @@ jobs: fi - name: Cache MediaWiki installation - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: /home/runner/src key: ${{ runner.os }}-${{ matrix.mediawiki_version }}-${{ hashFiles('.github/workflows/dependencies') }} @@ -195,7 +195,7 @@ jobs: git -C src/ log -n 1 --format="%H" - name: Cache dependencies (composer and npm) - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: /home/runner/cache key: ${{ runner.os }}-${{ matrix.mediawiki_version }}-${{ hashFiles('**/*.lock') }}