Skip to content

Commit e6a4e2b

Browse files
committed
fix: update composer update command in workflow to remove --with-all-dependencies flag
1 parent 0a1d67d commit e6a4e2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
composer require pestphp/pest-plugin-faker:2.0.0 --dev --no-update
4848
composer require phpunit/phpunit:10.5.36 --dev --no-update
4949
- name: Setup Packages
50-
run: composer update -o --with-all-dependencies
50+
run: composer update -o
5151
- name: Check Composer Json
5252
run: |
5353
composer normalize --dry-run --no-update-lock
@@ -93,7 +93,7 @@ jobs:
9393
composer require pestphp/pest-plugin-faker:2.0.0 --dev --no-update
9494
composer require phpunit/phpunit:10.5.36 --dev --no-update
9595
- name: Setup Dependencies
96-
run: composer update -o --with-all-dependencies
96+
run: composer update -o
9797
- name: Run Analyse
9898
run: composer analyse src
9999
- name: Run Type Tests

0 commit comments

Comments
 (0)