diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a554a81b..ea423c5e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,17 +29,8 @@ jobs: - name: Validate composer.json and composer.lock run: composer validate --strict - - name: Cache Composer packages - id: composer-cache - uses: actions/cache@v3 - with: - path: vendor - key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-php- - - name: Install dependencies - run: composer install --prefer-dist --no-progress + run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist - name: Install Composer packages not specified for PHP 5.3 if: ${{ steps.setup-php.outputs.php-version != '5.3' }}