diff --git a/.github/actions/build-android/action.yml b/.github/actions/build-android/action.yml index 7f589b5eeea..cf2367f647e 100644 --- a/.github/actions/build-android/action.yml +++ b/.github/actions/build-android/action.yml @@ -10,6 +10,9 @@ inputs: runs: using: composite steps: + - name: Setup git safe folders + shell: bash + run: git config --global --add safe.directory '*' - name: Setup node.js uses: ./.github/actions/setup-node - name: Install node dependencies diff --git a/.github/actions/build-npm-package/action.yml b/.github/actions/build-npm-package/action.yml index c8df158732e..295868a376b 100644 --- a/.github/actions/build-npm-package/action.yml +++ b/.github/actions/build-npm-package/action.yml @@ -14,6 +14,9 @@ inputs: runs: using: composite steps: + - name: Setup git safe folders + shell: bash + run: git config --global --add safe.directory '*' - name: Create /tmp/hermes/osx-bin directory shell: bash run: mkdir -p /tmp/hermes/osx-bin diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index f9a8dd601fc..fbb8bc6455a 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -478,6 +478,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup git safe folders + run: git config --global --add safe.directory '*' - name: Download npm package artifact uses: actions/download-artifact@v4.1.3 with: