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