From e556c5f988be4f095629b2f2e928d877407bf13f Mon Sep 17 00:00:00 2001 From: scawful Date: Fri, 7 Nov 2025 08:15:40 -0500 Subject: [PATCH] chore: configure Git for long paths and safe directories in gRPC setup - Added Git configuration to handle long paths and ensure safe directory access when cloning gRPC dependencies. - This change aims to improve compatibility and reliability during the build process, particularly for environments with long file paths. --- .github/actions/setup-build/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/setup-build/action.yml b/.github/actions/setup-build/action.yml index b537cc19..c1272fcd 100644 --- a/.github/actions/setup-build/action.yml +++ b/.github/actions/setup-build/action.yml @@ -53,6 +53,9 @@ runs: refreshenv } } + # Ensure Git can handle long paths and cached directories when cloning gRPC dependencies + git config --global core.longpaths true + git config --global --add safe.directory '*' - name: Setup sccache uses: hendrikmuhs/ccache-action@v1.2