We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e5a8a3 commit 5570f26Copy full SHA for 5570f26
.github/workflows/cron.yml
@@ -28,6 +28,18 @@ jobs:
28
with:
29
fetch-depth: 0
30
31
+ - name: Get Composer cache directory
32
+ id: composer-cache
33
+ run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
34
+
35
+ - name: Cache Composer dependencies
36
+ uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809
37
+ with:
38
+ path: ${{ steps.composer-cache.outputs.dir }}
39
+ key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
40
+ restore-keys: |
41
+ ${{ runner.os }}-php-
42
43
- name: Install base dependencies (without scraper)
44
run: |
45
composer remove bvp/scraper --no-update || true
0 commit comments