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.
2 parents ccbc5e8 + 101725a commit 38d20ecCopy full SHA for 38d20ec
.github/workflows/main.yaml
@@ -17,8 +17,9 @@ jobs:
17
php-version: ${{ matrix.php-versions }}
18
- name: Get composer cache directory
19
id: composer-cache
20
- run: echo "::set-output name=dir::$(composer config cache-files-dir)"
21
- - uses: actions/cache@v2
+ run: |
+ echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
22
+ - uses: actions/cache@v4
23
with:
24
path: ${{ steps.composer-cache.outputs.dir }}
25
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
0 commit comments