Skip to content

Commit

Permalink
Composer > Remove --no-suggest
Browse files Browse the repository at this point in the history
You are using the deprecated option "--no-suggest". It has no effect and will break in Composer 3.
  • Loading branch information
ruudk authored and ondrejmirtes committed Dec 16, 2021
1 parent 3e6f60d commit bf07c6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: "composer validate"

- name: "Install dependencies"
run: "composer install --no-interaction --no-progress --no-suggest"
run: "composer install --no-interaction --no-progress"

- name: "Lint"
run: "make lint"
Expand All @@ -61,7 +61,7 @@ jobs:
run: "composer validate"

- name: "Install dependencies"
run: "composer install --no-interaction --no-progress --no-suggest"
run: "composer install --no-interaction --no-progress"

- name: "Lint"
run: "make lint"
Expand Down Expand Up @@ -100,11 +100,11 @@ jobs:

- name: "Install lowest dependencies"
if: ${{ matrix.dependencies == 'lowest' }}
run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest"
run: "composer update --prefer-lowest --no-interaction --no-progress"

- name: "Install highest dependencies"
if: ${{ matrix.dependencies == 'highest' }}
run: "composer update --no-interaction --no-progress --no-suggest"
run: "composer update --no-interaction --no-progress"

- name: "Update PHPStan"
if: matrix.php-version == '8.0'
Expand Down

0 comments on commit bf07c6d

Please sign in to comment.