Skip to content

Commit ba1e1d5

Browse files
committed
Fix CI test run
1 parent 3623a8c commit ba1e1d5

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/tests-php.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,12 @@ jobs:
2828
# Prepare our composer cache directory
2929
# ------------------------------------------------------------------------------
3030
- name: Get Composer Cache Directory
31-
id: get-composer-cache-dir
32-
run: |
33-
echo "::set-output name=dir::$(composer config cache-files-dir)"
34-
- uses: actions/cache@v2
3531
id: composer-cache
32+
run: |
33+
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
34+
- uses: actions/cache@v4
3635
with:
37-
path: ${{ steps.get-composer-cache-dir.outputs.dir }}
36+
path: ${{ steps.composer-cache.outputs.dir }}
3837
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
3938
restore-keys: |
4039
${{ runner.os }}-composer-

0 commit comments

Comments
 (0)