Try remove using of cache
This commit is contained in:
parent
57c1749865
commit
bd69cb2dd4
|
@ -47,12 +47,14 @@ jobs:
|
|||
php --version
|
||||
composer --version
|
||||
|
||||
- name: Get cached composer directories
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: | # try removing ./vendor from cache
|
||||
./packages
|
||||
key: ${{ runner.os }}-${{ hashFiles('./composer.lock') }}
|
||||
# Try removing using of cache
|
||||
# - name: Get cached composer directories
|
||||
# uses: actions/cache@v2
|
||||
# with:
|
||||
# path: |
|
||||
# ./packages
|
||||
# ./vendor
|
||||
# key: ${{ runner.os }}-${{ hashFiles('./composer.lock') }}
|
||||
|
||||
- name: Setup and install composer
|
||||
run: composer install
|
||||
|
|
Loading…
Reference in New Issue