From 8d7aba7087636478b18b09ee237a4dea2df1f692 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:31:06 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 | datasource | package | from | to | | ----------- | ------------- | ---- | -- | | github-tags | actions/cache | v4 | v5 | --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index bd5bb973..692e757f 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -57,7 +57,7 @@ jobs: run: "mkdir -p .build/php_codesniffer" - name: "Cache cache directory for squizlabs/php_codesniffer" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: ".build/php_codesniffer" key: "php-${{ matrix.php-version }}-php_codesniffer-${{ github.sha }}" @@ -135,7 +135,7 @@ jobs: run: "mkdir -p .build/phpstan" - name: "Cache cache directory for phpstan/phpstan" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: ".build/phpstan" key: "php-${{ matrix.php-version }}-phpstan-${{ github.sha }}" @@ -148,7 +148,7 @@ jobs: run: "mkdir -p .build/psalm" - name: "Cache cache directory for vimeo/psalm" - uses: "actions/cache@v4" + uses: "actions/cache@v5" with: path: ".build/psalm" key: "php-${{ matrix.php-version }}-psalm-${{ github.sha }}"