diff --git a/.github/workflows/test-action.yaml b/.github/workflows/test-action.yaml index f6450f2..9e3112b 100644 --- a/.github/workflows/test-action.yaml +++ b/.github/workflows/test-action.yaml @@ -24,7 +24,7 @@ jobs: needs: build-dev runs-on: ubuntu-latest steps: - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 with: key: ${{ needs.build-dev.outputs.cache-key }} path: ./ diff --git a/action.yml b/action.yml index c679759..b187fae 100644 --- a/action.yml +++ b/action.yml @@ -79,7 +79,7 @@ runs: - id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT shell: bash - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**composer.lock') }} @@ -127,7 +127,7 @@ runs: shell: bash - if: ${{ inputs.cache-build == 'true' }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ./ key: ${{ steps.cache-key.outputs.cache-key }}