Commit 3671c6dea7f for php.net

commit 3671c6dea7f36d8a8c33bc4f9c24a3c58a51bb60
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date:   Wed Feb 18 23:19:59 2026 +0100

    [skip ci] Sigh, fix "" -> '' in GHA syntax

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f2803aa61c4..5885f5231c5 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -46,7 +46,7 @@ jobs:
           # When running nightly, set fetch-depth to 0 to clone the full
           # repository including all branches. This is required to find the
           # correct commit hashes.
-          fetch-depth: ${{ (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && "0" || "1" }}
+          fetch-depth: ${{ (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && '0' || '1' }}
       - name: Grab the commit mapping
         if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
         uses: actions/cache@v5