Skip to content

Commit d282266

Browse files
committed
Update workflow
1 parent bf4db32 commit d282266

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/master.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
- '8.4'
1818
- '8.5'
1919
steps:
20-
- uses: actions/checkout@v2
20+
- name: Checkout repository
21+
uses: actions/checkout@v4
2122
with:
2223
fetch-depth: 0
2324
- name: Set up PHP ${{ matrix.php }}
@@ -27,9 +28,9 @@ jobs:
2728
coverage: xdebug
2829
- name: Get composer cache directory
2930
id: composercache
30-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
31+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3132
- name: Cache dependencies
32-
uses: actions/cache@v2
33+
uses: actions/cache@v4
3334
with:
3435
path: ${{ steps.composercache.outputs.dir }}
3536
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)