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 b4a7016 commit 1b9fdb5Copy full SHA for 1b9fdb5
.github/workflows/code_analysis.yaml
@@ -36,13 +36,13 @@ jobs:
36
- name: Get Composer Cache Directory
37
id: composer-cache
38
run: |
39
- echo "::set-output name=dir::$(composer config cache-files-dir)"
+ echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
40
- uses: actions/cache@v2
41
with:
42
path: |
43
${{ steps.composer-cache.outputs.dir }}
44
- **/composer.lock
45
- key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
+ composer.lock
+ key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
46
47
- name: Install Composer
48
run: composer update --no-progress
0 commit comments