diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6b64b5..4b3c7d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache/Restore composer cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: actions-cache with: path: ${{ steps.composer-cache.outputs.dir }} @@ -45,7 +45,7 @@ jobs: ${{ runner.os }}-composer- - name: Cache/Restore vendor folder - uses: actions/cache@v4 + uses: actions/cache@v5 id: vendor-cache with: path: vendor diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 53a958b..586d9ec 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -55,7 +55,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies for FilaPress app - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ./filapress-app/${{ steps.composer-cache-app.outputs.dir }} key: ${{ runner.os }}-composer-app-${{ hashFiles('**/filapress-app/composer.lock') }} @@ -63,7 +63,7 @@ jobs: ${{ runner.os }}-composer-app- - name: Cache Vendor folder for FilaPress app - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ./filapress-app/vendor key: ${{ runner.OS }}-vendor-app-${{ hashFiles('**/filapress-app/composer.lock') }}