From 82585d32b521dbb56a05aff0409b1f02a808081d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 06:52:22 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/mediawiki-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mediawiki-tests.yml b/.github/workflows/mediawiki-tests.yml index 4c7e79084..882965232 100644 --- a/.github/workflows/mediawiki-tests.yml +++ b/.github/workflows/mediawiki-tests.yml @@ -148,7 +148,7 @@ jobs: fi - name: Cache docker image - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /home/runner/docker-images/${{ env.DOCKER_IMAGE }} key: ${{ env.DOCKER_IMAGE }}:${{ env.DOCKER_LATEST_TAG }} @@ -160,7 +160,7 @@ jobs: - name: Cache quibble docker image if: ${{ matrix.stage == 'coverage' || matrix.stage == 'phan' }} - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /home/runner/docker-images/${{ env.QUIBBLE_DOCKER_IMAGE }} key: ${{ env.QUIBBLE_DOCKER_IMAGE }}:${{ env.QUIBBLE_DOCKER_LATEST_TAG }} @@ -196,7 +196,7 @@ jobs: git -C src/ log -n 1 --format="%H" - name: Cache dependencies (composer and npm) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /home/runner/cache key: ${{ runner.os }}-${{ env.MEDIAWIKI_VERSION }}-${{ hashFiles('**/*.json') }}