We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35d056f commit 8f51ed6Copy full SHA for 8f51ed6
1 file changed
.github/workflows/test.yaml
@@ -24,13 +24,15 @@ jobs:
24
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
25
26
- name: Get composer cache directory
27
+ uses: mathiasvr/command-output@v2.0.0
28
id: composer-cache
- run: echo "dir=$(composer config cache-files-dir)" >> $env:GITHUB_OUTPUT
29
+ with:
30
+ run: composer config cache-files-dir
31
32
- name: Cache composer dependencies
33
uses: actions/cache@v4
34
with:
- path: ${{ steps.composer-cache.outputs.dir }}
35
+ path: ${{ steps.composer-cache.outputs.stdout }}
36
key: ${{ runner.os }}-${{ matrix.php-versions }}-composer-${{ hashFiles('**/composer.json') }}
37
restore-keys: ${{ runner.os }}-${{ matrix.php-versions }}-composer-
38
0 commit comments