ci: Double-quote variables in GitHub Actions

This is best practice for shell scripts.

Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com>
This commit is contained in:
Demi Marie Obenour
2026-04-09 13:00:24 -04:00
committed by Bo Chen
parent 9d47769bc2
commit 23e139c0f8
5 changed files with 31 additions and 33 deletions

View File

@@ -13,7 +13,7 @@ jobs:
steps:
- name: Fix workspace permissions
if: ${{ github.event_name != 'pull_request' }}
run: sudo chown -R github-runner:github-runner ${GITHUB_WORKSPACE}
run: sudo chown -R github-runner:github-runner "${GITHUB_WORKSPACE}"
- name: Code checkout
if: ${{ github.event_name != 'pull_request' }}
uses: actions/checkout@v6