We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf4db32 commit d282266Copy full SHA for d282266
1 file changed
.github/workflows/master.yml
@@ -17,7 +17,8 @@ jobs:
17
- '8.4'
18
- '8.5'
19
steps:
20
- - uses: actions/checkout@v2
+ - name: Checkout repository
21
+ uses: actions/checkout@v4
22
with:
23
fetch-depth: 0
24
- name: Set up PHP ${{ matrix.php }}
@@ -27,9 +28,9 @@ jobs:
27
28
coverage: xdebug
29
- name: Get composer cache directory
30
id: composercache
- run: echo "::set-output name=dir::$(composer config cache-files-dir)"
31
+ run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
32
- name: Cache dependencies
- uses: actions/cache@v2
33
+ uses: actions/cache@v4
34
35
path: ${{ steps.composercache.outputs.dir }}
36
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
0 commit comments