Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache Composer dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand All @@ -58,15 +58,15 @@ jobs:
run: echo "week=$(date +%Y-W%U)" >> $GITHUB_OUTPUT

- name: Cache act binary
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .cache/bin
key: ${{ runner.os }}-${{ runner.arch }}-act-binary-${{ steps.week.outputs.week }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-act-binary-

- name: Cache act local caches
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
.cache/act/artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache composer dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ steps.composer-cache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
Expand Down