From 50ebc187ab09b035595077dce29fc28825a82b4c Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Fri, 4 Nov 2022 14:39:00 +0000 Subject: [PATCH] Build/Test Tools: Fix more `set-output` deprecated warnings. This updates the `ramsey/composer-install` and `shivammathur/setup-php` actions to their latest versions. These updates include fixes for the deprecated warnings output when using `set-output` and `save-state` commands. Props jrf, desrosj. See #56820, #56882, #56793. git-svn-id: https://develop.svn.wordpress.org/trunk@54750 602fd350-edb4-49c9-b593-d223f7449a82 --- .github/workflows/coding-standards.yml | 4 ++-- .github/workflows/php-compatibility.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 426778aeaa..6a249a93b4 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -67,7 +67,7 @@ jobs: uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 - name: Set up PHP - uses: shivammathur/setup-php@e04e1d97f0c0481c6e1ba40f8a538454fe5d7709 # v2.21.2 + uses: shivammathur/setup-php@1a18b2267f80291a81ca1d33e7c851fe09e7dfc4 # v2.22.0 with: php-version: '7.4' coverage: none @@ -91,7 +91,7 @@ jobs: key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcs-cache-${{ hashFiles('**/composer.json', 'phpcs.xml.dist') }} - name: Install Composer dependencies - uses: ramsey/composer-install@f680dac46551dffb2234a240d65ae806c2999dd6 # v2.1.0 + uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0 with: composer-options: "--no-progress --no-ansi" diff --git a/.github/workflows/php-compatibility.yml b/.github/workflows/php-compatibility.yml index f60dc901af..411da95db2 100644 --- a/.github/workflows/php-compatibility.yml +++ b/.github/workflows/php-compatibility.yml @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 - name: Set up PHP - uses: shivammathur/setup-php@e04e1d97f0c0481c6e1ba40f8a538454fe5d7709 # v2.21.2 + uses: shivammathur/setup-php@1a18b2267f80291a81ca1d33e7c851fe09e7dfc4 # v2.22.0 with: php-version: '7.4' coverage: none @@ -86,7 +86,7 @@ jobs: key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcompat-cache-${{ hashFiles('**/composer.json', 'phpcompat.xml.dist') }} - name: Install Composer dependencies - uses: ramsey/composer-install@f680dac46551dffb2234a240d65ae806c2999dd6 # v2.1.0 + uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0 with: composer-options: "--no-progress --no-ansi"