@@ -119,11 +119,11 @@ jobs:
119119 # Set the "short_open_tag" ini to make sure specific conditions are tested.
120120 # Also turn on error_reporting to ensure all notices are shown.
121121 if [[ ${{ matrix.custom_ini }} == true && "${{ matrix.php }}" == '5.5' ]]; then
122- echo 'PHP_INI=error_reporting=-1, display_errors=On, date.timezone=Australia/Sydney, short_open_tag=On, asp_tags=On' >> $GITHUB_OUTPUT
122+ echo 'PHP_INI=error_reporting=-1, display_errors=On, date.timezone=Australia/Sydney, short_open_tag=On, asp_tags=On' >> " $GITHUB_OUTPUT"
123123 elif [[ ${{ matrix.custom_ini }} == true && "${{ matrix.php }}" == '7.0' ]]; then
124- echo 'PHP_INI=error_reporting=-1, display_errors=On, date.timezone=Australia/Sydney, short_open_tag=On' >> $GITHUB_OUTPUT
124+ echo 'PHP_INI=error_reporting=-1, display_errors=On, date.timezone=Australia/Sydney, short_open_tag=On' >> " $GITHUB_OUTPUT"
125125 else
126- echo 'PHP_INI=error_reporting=-1, display_errors=On' >> $GITHUB_OUTPUT
126+ echo 'PHP_INI=error_reporting=-1, display_errors=On' >> " $GITHUB_OUTPUT"
127127 fi
128128
129129 - name : Install PHP
@@ -215,11 +215,11 @@ jobs:
215215 # Set the "short_open_tag" ini to make sure specific conditions are tested.
216216 # Also turn on error_reporting to ensure all notices are shown.
217217 if [[ ${{ matrix.custom_ini }} == true && "${{ startsWith( matrix.php, '5.' ) }}" == true ]]; then
218- echo 'PHP_INI=error_reporting=-1, display_errors=On, date.timezone=Australia/Sydney, short_open_tag=On, asp_tags=On' >> $GITHUB_OUTPUT
218+ echo 'PHP_INI=error_reporting=-1, display_errors=On, date.timezone=Australia/Sydney, short_open_tag=On, asp_tags=On' >> " $GITHUB_OUTPUT"
219219 elif [[ ${{ matrix.custom_ini }} == true && "${{ startsWith( matrix.php, '7.' ) }}" == true ]]; then
220- echo 'PHP_INI=error_reporting=-1, display_errors=On, date.timezone=Australia/Sydney, short_open_tag=On' >> $GITHUB_OUTPUT
220+ echo 'PHP_INI=error_reporting=-1, display_errors=On, date.timezone=Australia/Sydney, short_open_tag=On' >> " $GITHUB_OUTPUT"
221221 else
222- echo 'PHP_INI=error_reporting=-1, display_errors=On' >> $GITHUB_OUTPUT
222+ echo 'PHP_INI=error_reporting=-1, display_errors=On' >> " $GITHUB_OUTPUT"
223223 fi
224224
225225 - name : Install PHP
@@ -255,7 +255,7 @@ jobs:
255255 - name : Grab PHPUnit version
256256 id : phpunit_version
257257 # yamllint disable-line rule:line-length
258- run : echo "VERSION=$(vendor/bin/phpunit --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
258+ run : echo "VERSION=$(vendor/bin/phpunit --version | grep --only-matching --max-count=1 --extended-regexp '\b[0-9]+\.[0-9]+')" >> " $GITHUB_OUTPUT"
259259
260260 - name : " DEBUG: Show grabbed version"
261261 run : echo ${{ steps.phpunit_version.outputs.VERSION }}
0 commit comments