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 8cfdbc8 commit 59ef427Copy full SHA for 59ef427
1 file changed
.github/workflows/main.yaml
@@ -23,8 +23,9 @@ jobs:
23
php-version: ${{ matrix.php-versions }}
24
- name: Get composer cache directory
25
id: composer-cache
26
- run: echo "::set-output name=dir::$(composer config cache-files-dir)"
27
- - uses: actions/cache@v2
+ run: |
+ echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
28
+ - uses: actions/cache@v4
29
with:
30
path: ${{ steps.composer-cache.outputs.dir }}
31
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
0 commit comments