Skip to content

Commit a08ac85

Browse files
committed
Github action: try to fix cache
1 parent 1a0719b commit a08ac85

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/code_analysis.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,18 @@ jobs:
4949
with:
5050
path: |
5151
${{ steps.composer-cache.outputs.dir }}
52-
**/composer.lock
5352
key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }}
5453
restore-keys: |
5554
${{ runner.os }}-composer-
5655
5756
57+
- uses: actions/cache@v2
58+
with:
59+
path: |
60+
**/composer.lock
61+
key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }}
62+
63+
5864
- name: Install Composer
5965
run: composer install --no-progress
6066

0 commit comments

Comments
 (0)