@@ -119,11 +119,11 @@ jobs:
119
119
# Set the "short_open_tag" ini to make sure specific conditions are tested.
120
120
# Also turn on error_reporting to ensure all notices are shown.
121
121
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"
123
123
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"
125
125
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"
127
127
fi
128
128
129
129
- name : Install PHP
@@ -215,11 +215,11 @@ jobs:
215
215
# Set the "short_open_tag" ini to make sure specific conditions are tested.
216
216
# Also turn on error_reporting to ensure all notices are shown.
217
217
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"
219
219
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"
221
221
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"
223
223
fi
224
224
225
225
- name : Install PHP
@@ -255,7 +255,7 @@ jobs:
255
255
- name : Grab PHPUnit version
256
256
id : phpunit_version
257
257
# 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"
259
259
260
260
- name : " DEBUG: Show grabbed version"
261
261
run : echo ${{ steps.phpunit_version.outputs.VERSION }}
0 commit comments