We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ace2e02 + db19140 commit 929599bCopy full SHA for 929599b
1 file changed
.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