mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:16:12 +01:00
[BUGFIX] Fix the Composer cache directory in the CI configuration (#186)
Fixes #184
This commit is contained in:
parent
e319c78fd1
commit
5ec57829e4
1 changed files with 3 additions and 3 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -48,7 +48,7 @@ jobs:
|
|||
uses: actions/cache@v1
|
||||
with:
|
||||
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
||||
path: ~/.composer/cache
|
||||
path: ~/.cache/composer
|
||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||
- name: "Install Composer dependencies"
|
||||
run: "composer install --no-progress"
|
||||
|
@ -114,7 +114,7 @@ jobs:
|
|||
uses: actions/cache@v1
|
||||
with:
|
||||
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
||||
path: ~/.composer/cache
|
||||
path: ~/.cache/composer
|
||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||
- env:
|
||||
TYPO3: "${{ matrix.typo3-version }}"
|
||||
|
@ -166,7 +166,7 @@ jobs:
|
|||
uses: actions/cache@v1
|
||||
with:
|
||||
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
||||
path: ~/.composer/cache
|
||||
path: ~/.cache/composer
|
||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||
- env:
|
||||
TYPO3: "${{ matrix.typo3-version }}"
|
||||
|
|
Loading…
Reference in a new issue