File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 55 - cron : ' 0,30 * * * *'
66 workflow_dispatch :
77
8+ concurrency :
9+ group : cron-${{ github.ref }}
10+ cancel-in-progress : false
11+
812permissions :
913 contents : write
1014
2125
2226 - name : Checkout Code
2327 uses : actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
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-
2442
2543 - name : Install base dependencies (without scraper)
2644 run : |
You can’t perform that action at this time.
0 commit comments