Skip to content

Commit a5a60de

Browse files
committed
Remove deprecated --no-suggest flag
1 parent 20a93c6 commit a5a60de

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/blackbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
username: ${{ secrets.DOCKERHUB_USERNAME }}
3131
password: ${{ secrets.DOCKERHUB_TOKEN }}
3232
- name: Install dependencies
33-
run: composer install --prefer-dist --no-interaction --no-suggest
33+
run: composer install --prefer-dist --no-interaction
3434

3535
- name: Compose Blackbox environment
3636
run: docker compose up -d

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
coverage: none
2929

3030
- name: Install dependencies
31-
run: composer install --prefer-dist --no-interaction --no-suggest
31+
run: composer install --prefer-dist --no-interaction
3232
- name: Run PHP Code Sniffer
3333
run: ./vendor/bin/phpcs
3434

@@ -58,6 +58,6 @@ jobs:
5858
tools: "cs2pr"
5959

6060
- name: Install dependencies
61-
run: composer install --prefer-dist --no-interaction --no-suggest
61+
run: composer install --prefer-dist --no-interaction
6262
- name: Run PHPStan
6363
run: "vendor/bin/phpstan analyse --autoload-file tests/bootstrap.php --error-format=checkstyle | cs2pr"

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
coverage: none
6363

6464
- name: Install dependencies
65-
run: composer update --prefer-dist --no-interaction --no-suggest
65+
run: composer update --prefer-dist --no-interaction
6666

6767
- name: Start Redis
6868
uses: supercharge/[email protected]

0 commit comments

Comments
 (0)