Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# but will restore the cache generated during the previous run
# based on partial match
- name: Composer cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ steps.composer-cache.outputs.files_cache }}
Expand All @@ -45,7 +45,7 @@ jobs:
# but will restore the cache generated during the previous run
# based on partial match
- name: Psalm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
# we really need a way for Psalm to tell where cache is located
path: |
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
# the way cache keys are set up will always cause a cache miss
# but will restore the cache generated during the previous run
- name: Retrieve cached packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ steps.composer-cache.outputs.files_cache }}
Expand All @@ -103,7 +103,7 @@ jobs:
# but will restore the cache generated during the previous run
# based on partial match
- name: Retrieve PHPCS cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/phpcs
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
# the way cache keys are set up will always cause a cache miss
# but will restore the cache generated during the previous run
- name: Retrieve cached packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ steps.composer-cache.outputs.files_cache }}
Expand Down