We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3623a8c commit ba1e1d5Copy full SHA for ba1e1d5
1 file changed
.github/workflows/tests-php.yml
@@ -28,13 +28,12 @@ jobs:
28
# Prepare our composer cache directory
29
# ------------------------------------------------------------------------------
30
- 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
35
id: composer-cache
+ run: |
+ echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
+ - uses: actions/cache@v4
36
with:
37
- path: ${{ steps.get-composer-cache-dir.outputs.dir }}
+ path: ${{ steps.composer-cache.outputs.dir }}
38
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
39
restore-keys: |
40
${{ runner.os }}-composer-
0 commit comments