Skip to content

Commit c677112

Browse files
committed
Remove deprecated option
1 parent 1a4ea8b commit c677112

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
restore-keys: "php-${{ matrix.php-version }}-composer-locked-"
4242

4343
- name: "Install dependencies with Composer"
44-
run: "composer install --no-interaction --no-progress --no-suggest"
44+
run: "composer install --no-interaction --no-progress"
4545

4646
# https://github.com/doctrine/.github/issues/3
4747
- name: "Run PHP_CodeSniffer"

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
restore-keys: "php-${{ matrix.php-version }}-composer-locked-"
5858

5959
- name: "Install dependencies with composer"
60-
run: "composer update --no-interaction --no-progress --no-suggest"
60+
run: "composer update --no-interaction --no-progress"
6161

6262
- name: "Run PHPUnit"
6363
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"

.github/workflows/phpbench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
restore-keys: "php-${{ matrix.php-version }}-composer-locked-"
4545

4646
- name: "Install dependencies with composer"
47-
run: "composer update --no-interaction --no-progress --no-suggest"
47+
run: "composer update --no-interaction --no-progress"
4848

4949
- name: "Run PHPBench"
5050
run: "php -n ./vendor/bin/phpbench run --iterations=3 --warmup=1 --report=aggregate"

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
restore-keys: "php-${{ matrix.php-version }}-composer-locked-"
4242

4343
- name: "Install dependencies with composer"
44-
run: "composer install --no-interaction --no-progress --no-suggest"
44+
run: "composer install --no-interaction --no-progress"
4545

4646
- name: "Run a static analysis with phpstan/phpstan"
4747
run: "vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr"

0 commit comments

Comments
 (0)