From 0bc495727e44922ca6041f72cc2fd49191fb68d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 02:03:46 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 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] --- .github/workflows/tests.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 73e61b7..8ed1b16 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -82,7 +82,7 @@ jobs: - name: 'Init composer dep cache' id: cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: "composer-${{ runner.os }}-${{ matrix.php-version }}-${{ steps.vars.outputs.phpunit-version }}-${{ hashFiles('composer.lock') }}" @@ -96,14 +96,14 @@ jobs: - name: 'Save composer dep cache' if: steps.cache.outputs.cache-hit != 'true' && steps.cache.outputs.cache-hit != true - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: "composer-${{ runner.os }}-${{ matrix.php-version }}-${{ steps.vars.outputs.phpunit-version }}-${{ hashFiles('composer.lock') }}" - name: 'Restore consul ${{ env.CONSUL_VERSION }}' id: consul-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: '${{ runner.tool_cache }}/consul' key: 'consul-${{ env.CONSUL_VERSION }}' @@ -127,7 +127,7 @@ jobs: - name: 'Save consul ${{ env.CONSUL_VERSION }} cache' if: '! steps.consul-cache.outputs.cache-hit' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: '${{ runner.tool_cache }}/consul' key: 'consul-${{ env.CONSUL_VERSION }}'