Skip to content

Commit fe70595

Browse files
authored
Merge pull request #827 from Automattic/feature/ghactions-always-quote-variables
2 parents 8db56ec + e2d48fa commit fe70595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ jobs:
101101
id: set_ini
102102
run: |
103103
if [[ "${{ matrix.dependencies }}" != "dev" ]]; then
104-
echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On' >> $GITHUB_OUTPUT
104+
echo 'PHP_INI=error_reporting=E_ALL & ~E_DEPRECATED, display_errors=On' >> "$GITHUB_OUTPUT"
105105
else
106-
echo 'PHP_INI=error_reporting=-1, display_errors=On' >> $GITHUB_OUTPUT
106+
echo 'PHP_INI=error_reporting=-1, display_errors=On' >> "$GITHUB_OUTPUT"
107107
fi
108108
109109
- name: Install PHP

0 commit comments

Comments
 (0)