We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 379c6f8 commit f149cbfCopy full SHA for f149cbf
.github/workflows/tests.yaml
@@ -28,12 +28,12 @@ jobs:
28
29
- name: Set composer cache directory
30
id: composer-cache
31
- run: echo "::set-output name=dir::$(composer config cache-files-dir)"
+ run: echo "COMPOSER_CACHE_DIRECTORY=$(composer config cache-files-dir)" >> $GITHUB_ENV
32
33
- name: Restore composer from cache
34
uses: actions/cache@v3
35
with:
36
- path: ${{ steps.composer-cache.outputs.dir }}
+ path: ${{ env.COMPOSER_CACHE_DIRECTORY }}
37
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
38
restore-keys: ${{ runner.os }}-composer-
39
0 commit comments