Skip to content

Commit 9d4750a

Browse files
committed
Build/Test Tools: Remove unnecessary --no-interaction option from Composer commands.
As of version `2.17.0` of the `shivammathur/setup-php` action, the `COMPOSER_NO_INTERACTION` environment variable is configured by default. `—-no-interaction` will always be used. Props jrf, hellofromTonya, SergeyBiryukov, costdev, desrosj. Fixes #54695. git-svn-id: https://develop.svn.wordpress.org/trunk@54313 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 8e0c216 commit 9d4750a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- name: Install Composer dependencies
9494
uses: ramsey/composer-install@f680dac46551dffb2234a240d65ae806c2999dd6 # v2.1.0
9595
with:
96-
composer-options: "--no-progress --no-ansi --no-interaction"
96+
composer-options: "--no-progress --no-ansi"
9797

9898
- name: Make Composer packages available globally
9999
run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH

.github/workflows/php-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: Install Composer dependencies
8989
uses: ramsey/composer-install@f680dac46551dffb2234a240d65ae806c2999dd6 # v2.1.0
9090
with:
91-
composer-options: "--no-progress --no-ansi --no-interaction"
91+
composer-options: "--no-progress --no-ansi"
9292

9393
- name: Make Composer packages available globally
9494
run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)