diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9817cdb458..4b9afeb572 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -90,7 +90,7 @@ jobs: - name: Cache extensions 5.3 - 5.6 if: matrix.php < '7.0' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-env-php5.outputs.dir }} key: ${{ steps.cache-env-php5.outputs.key }} @@ -98,7 +98,7 @@ jobs: - name: Cache extensions 7.0 - 8.0 if: matrix.php >= '7.0' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cache-env-php7.outputs.dir }} key: ${{ steps.cache-env-php7.outputs.key }} @@ -121,7 +121,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@v3 + uses: actions/cache@v4 with: path: ${{ env.COMPOSER_CACHE_DIR }} key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}