Build(deps): bump actions/cache from 4 to 5 (#4606)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2025-12-12 11:05:40 +03:00
committed by GitHub
parent 6868f4ca91
commit d0f8d303be

View File

@@ -92,7 +92,7 @@ jobs:
- name: Cache extensions 5.3 - 5.6
if: matrix.php < '7.0'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.cache-env-php5.outputs.dir }}
key: ${{ steps.cache-env-php5.outputs.key }}
@@ -100,7 +100,7 @@ jobs:
- name: Cache extensions 7.0 - 8.0
if: matrix.php >= '7.0'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.cache-env-php7.outputs.dir }}
key: ${{ steps.cache-env-php7.outputs.key }}
@@ -124,7 +124,7 @@ jobs:
run: echo "COMPOSER_CACHE_DIR=~\AppData\Local\Composer" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Cache dependencies installed with composer
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}