File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -54,11 +54,11 @@ jobs:
54
54
id : set_ini
55
55
run : |
56
56
if [[ "${{ matrix.phpcs_version }}" != "dev-master" ]]; then
57
- echo '::set-output name= PHP_INI:: error_reporting=E_ALL & ~E_DEPRECATED'
57
+ echo 'PHP_INI= error_reporting=E_ALL & ~E_DEPRECATED' >> $GITHUB_OUTPUT
58
58
elif [[ "${{ matrix.php }}" == "latest" ]]; then
59
- echo '::set-output name= PHP_INI:: error_reporting=E_ALL & ~E_DEPRECATED'
59
+ echo 'PHP_INI= error_reporting=E_ALL & ~E_DEPRECATED' >> $GITHUB_OUTPUT
60
60
else
61
- echo '::set-output name= PHP_INI:: error_reporting=-1'
61
+ echo 'PHP_INI= error_reporting=-1' >> $GITHUB_OUTPUT
62
62
fi
63
63
64
64
- name : Install PHP
Original file line number Diff line number Diff line change @@ -116,11 +116,11 @@ jobs:
116
116
id : set_ini
117
117
run : |
118
118
if [[ "${{ matrix.phpcs_version }}" != "dev-master" ]]; then
119
- echo '::set-output name= PHP_INI:: error_reporting=E_ALL & ~E_DEPRECATED'
119
+ echo 'PHP_INI= error_reporting=E_ALL & ~E_DEPRECATED' >> $GITHUB_OUTPUT
120
120
elif [[ "${{ matrix.php }}" == "8.1" ]]; then
121
- echo '::set-output name= PHP_INI:: error_reporting=E_ALL & ~E_DEPRECATED'
121
+ echo 'PHP_INI= error_reporting=E_ALL & ~E_DEPRECATED' >> $GITHUB_OUTPUT
122
122
else
123
- echo '::set-output name= PHP_INI:: error_reporting=-1'
123
+ echo 'PHP_INI= error_reporting=-1' >> $GITHUB_OUTPUT
124
124
fi
125
125
126
126
- name : Install PHP
You can’t perform that action at this time.
0 commit comments