From 9d4750abd0e72b77b015701b98f31ae77ced880b Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Mon, 26 Sep 2022 19:15:05 +0000 Subject: [PATCH] Build/Test Tools: Remove unnecessary `--no-interaction` option from Composer commands. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/coding-standards.yml | 2 +- .github/workflows/php-compatibility.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 8876203dbb..79c6b9f114 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -93,7 +93,7 @@ jobs: - name: Install Composer dependencies uses: ramsey/composer-install@f680dac46551dffb2234a240d65ae806c2999dd6 # v2.1.0 with: - composer-options: "--no-progress --no-ansi --no-interaction" + composer-options: "--no-progress --no-ansi" - name: Make Composer packages available globally run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH diff --git a/.github/workflows/php-compatibility.yml b/.github/workflows/php-compatibility.yml index f74868892f..aa4d4df1b4 100644 --- a/.github/workflows/php-compatibility.yml +++ b/.github/workflows/php-compatibility.yml @@ -88,7 +88,7 @@ jobs: - name: Install Composer dependencies uses: ramsey/composer-install@f680dac46551dffb2234a240d65ae806c2999dd6 # v2.1.0 with: - composer-options: "--no-progress --no-ansi --no-interaction" + composer-options: "--no-progress --no-ansi" - name: Make Composer packages available globally run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH