We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccbc5e8 commit 101725aCopy full SHA for 101725a
.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