We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c3acafc + 76e9e1c commit 39a6fafCopy full SHA for 39a6faf
1 file changed
.github/workflows/main.yaml
@@ -20,8 +20,9 @@ jobs:
20
php-version: ${{ matrix.php-versions }}
21
- name: Get composer cache directory
22
id: composer-cache
23
- run: echo "::set-output name=dir::$(composer config cache-files-dir)"
24
- - uses: actions/cache@v2
+ run: |
+ echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
25
+ - uses: actions/cache@v4
26
with:
27
path: ${{ steps.composer-cache.outputs.dir }}
28
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
0 commit comments