mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Updates for composer cachje
This commit is contained in:
parent
7e57cac981
commit
6347368278
15
.github/workflows/phpunit.yml
vendored
15
.github/workflows/phpunit.yml
vendored
@ -92,14 +92,25 @@ jobs:
|
||||
run: |
|
||||
cp .env.ci .env
|
||||
|
||||
# - name: Get Composer Cache Directory
|
||||
# id: composer-cache
|
||||
# run: |
|
||||
# echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||
# - uses: actions/cache@v4
|
||||
# with:
|
||||
# path: ${{ steps.composer-cache.outputs.dir }}
|
||||
# key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
|
||||
# restore-keys: |
|
||||
# ${{ runner.os }}-${{ matrix.php }}-composer-
|
||||
|
||||
- name: Get Composer Cache Directory
|
||||
id: composer-cache
|
||||
run: |
|
||||
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
||||
- uses: actions/cache@v4
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: ${{ steps.composer-cache.outputs.dir }}
|
||||
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
|
||||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-${{ matrix.php }}-composer-
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user