We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 805c435 commit dff3de9Copy full SHA for dff3de9
.github/workflows/main.yaml
@@ -21,8 +21,9 @@ jobs:
21
php-version: ${{ matrix.php-versions }}
22
- name: Get composer cache directory
23
id: composer-cache
24
- run: echo "::set-output name=dir::$(composer config cache-files-dir)"
25
- - uses: actions/cache@v2
+ run: |
+ echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
26
+ - uses: actions/cache@v4
27
with:
28
path: ${{ steps.composer-cache.outputs.dir }}
29
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
0 commit comments