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 8e197a1 commit d3d2eb1Copy full SHA for d3d2eb1
.github/workflows/test.yml
@@ -15,7 +15,7 @@ jobs:
15
16
steps:
17
- name: Checkout
18
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
19
20
- name: Use PHP ${{ matrix.php-version }}
21
uses: shivammathur/setup-php@v2
@@ -27,10 +27,9 @@ jobs:
27
28
- name: Get composer cache directory
29
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
32
- name: Cache dependencies
33
- uses: actions/cache@v2
+ uses: actions/cache@v3
34
with:
35
path: ${{ steps.composercache.outputs.dir }}
36
key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}
0 commit comments