Skip to content

Commit 59ef427

Browse files
committed
Update actions/cache from v2
1 parent 8cfdbc8 commit 59ef427

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/main.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ jobs:
2323
php-version: ${{ matrix.php-versions }}
2424
- name: Get composer cache directory
2525
id: composer-cache
26-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
27-
- uses: actions/cache@v2
26+
run: |
27+
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
28+
- uses: actions/cache@v4
2829
with:
2930
path: ${{ steps.composer-cache.outputs.dir }}
3031
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)