Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:

- name: Restore cached micro.sfx
id: restore-micro-sfx
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: buildroot/bin/micro.sfx
key: micro-sfx-${{ runner.os }}-${{ runner.arch }}-${{ needs.phar.outputs.php-version }}-${{ hashFiles('craft.yml') }}
Expand All @@ -139,7 +139,7 @@ jobs:
- name: Cache micro.sfx
id: cache-micro-sfx
if: steps.restore-micro-sfx.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: buildroot/bin/micro.sfx
key: ${{ steps.restore-micro-sfx.outputs.cache-primary-key }}
Expand Down
Loading