From 16e9cdbbea53da4e2a247082ec4c98128f70e8e6 Mon Sep 17 00:00:00 2001 From: Scott Kingsley Clark Date: Mon, 4 Sep 2023 21:05:33 -0500 Subject: [PATCH] Update version used for action --- .github/workflows/php-compatibility.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php-compatibility.yml b/.github/workflows/php-compatibility.yml index 0ebcb6aca6..9aab169d55 100644 --- a/.github/workflows/php-compatibility.yml +++ b/.github/workflows/php-compatibility.yml @@ -20,15 +20,15 @@ jobs: - name: Get Composer Cache Directory id: composer-cache run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" - - uses: actions/cache@v1 + echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT + - uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-composer- - name: Run PHPCS inspection - uses: rtCamp/action-phpcs-code-review@v2 + uses: rtCamp/action-phpcs-code-review@v3 env: GH_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }} PHPCS_STANDARD_FILE_NAME: .phpcs.compat.xml