diff --git a/.github/workflows/quicktest.yml b/.github/workflows/quicktest.yml index 2afdd598..3082f5b8 100644 --- a/.github/workflows/quicktest.yml +++ b/.github/workflows/quicktest.yml @@ -54,11 +54,11 @@ jobs: id: set_ini run: | if [[ "${{ matrix.phpcs_version }}" != "dev-master" ]]; then - echo '::set-output name=PHP_INI::error_reporting=E_ALL & ~E_DEPRECATED' + echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED' >> $GITHUB_OUTPUT elif [[ "${{ matrix.php }}" == "latest" ]]; then - echo '::set-output name=PHP_INI::error_reporting=E_ALL & ~E_DEPRECATED' + echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED' >> $GITHUB_OUTPUT else - echo '::set-output name=PHP_INI::error_reporting=-1' + echo 'PHP_INI=error_reporting=-1' >> $GITHUB_OUTPUT fi - name: Install PHP diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 74aecb79..b55f5164 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -116,11 +116,11 @@ jobs: id: set_ini run: | if [[ "${{ matrix.phpcs_version }}" != "dev-master" ]]; then - echo '::set-output name=PHP_INI::error_reporting=E_ALL & ~E_DEPRECATED' + echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED' >> $GITHUB_OUTPUT elif [[ "${{ matrix.php }}" == "8.1" ]]; then - echo '::set-output name=PHP_INI::error_reporting=E_ALL & ~E_DEPRECATED' + echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED' >> $GITHUB_OUTPUT else - echo '::set-output name=PHP_INI::error_reporting=-1' + echo 'PHP_INI=error_reporting=-1' >> $GITHUB_OUTPUT fi - name: Install PHP