From bebb4e9f43113cbf674d8eed4d0f3fe6ca8cc816 Mon Sep 17 00:00:00 2001 From: Asuka Date: Fri, 6 Feb 2026 16:54:04 +0800 Subject: [PATCH] Fix git safe directory issue for windows --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ff8baa72b22..4bd63593c6c1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,9 @@ jobs: - name: Checkout code uses: actions/checkout@v5 + - name: Fix git safe directory + run: git config --global --add safe.directory '*' + - name: Cache dependencies id: cache-deps uses: actions/cache@v4