From 436b7263b41fa42eeb43229c3d3d750fdcb08f84 Mon Sep 17 00:00:00 2001 From: Greg Pauloski <18683347+gpauloski@users.noreply.github.com> Date: Mon, 30 Mar 2026 21:39:06 -0700 Subject: [PATCH] Allow git in Docker action --- .github/workflows/integration.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index cedda7a..3968b9c 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -28,6 +28,9 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} steps: + - name: Allow git in Docker action + run: git config --global --add safe.directory '*' + - name: Checkout repository uses: actions/checkout@v6