Skip to content

Commit 52bf13f

Browse files
committed
Last round of standardising the quotes around variables saved to the environment or the output.
1 parent cbb8598 commit 52bf13f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/reusable-performance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ jobs:
123123
steps:
124124
- name: Configure environment variables
125125
run: |
126-
echo PHP_FPM_UID="$(id -u)" >> "$GITHUB_ENV"
127-
echo PHP_FPM_GID="$(id -g)" >> "$GITHUB_ENV"
126+
echo "PHP_FPM_UID=$(id -u)" >> "$GITHUB_ENV"
127+
echo "PHP_FPM_GID=$(id -g)" >> "$GITHUB_ENV"
128128
129129
- name: Checkout repository
130130
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/reusable-phpunit-tests-v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
# used for PHP 8 testing instead.
133133
if [ "${LOCAL_PHP}" == '8.0-fpm' ]; then
134134
docker compose run --rm php composer install --ignore-platform-reqs
135-
echo PHPUNIT_SCRIPT="php-composer" >> "$GITHUB_ENV"
135+
echo "PHPUNIT_SCRIPT=php-composer" >> "$GITHUB_ENV"
136136
elif [ "${LOCAL_PHP}" == '7.1-fpm' ]; then
137137
docker compose run --rm php composer update
138138
git checkout -- composer.lock

.github/workflows/slack-notifications.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
run: |
148148
# shellcheck disable=SC2016
149149
COMMIT_MESSAGE="$(echo "${COMMIT_MSG_RAW}" | awk 'NR==1' | sed 's/`/\\`/g' | sed 's/\"/\\\\\\"/g' | sed 's/\$/\\$/g')"
150-
echo commit_message_escaped="${COMMIT_MESSAGE}" >> "$GITHUB_OUTPUT"
150+
echo "commit_message_escaped=${COMMIT_MESSAGE}" >> "$GITHUB_OUTPUT"
151151
env:
152152
COMMIT_MSG_RAW: ${{ ( github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' ) && fromJson( steps.current-commit-message.outputs.result ) || github.event.head_commit.message }}
153153

0 commit comments

Comments
 (0)