From 27f10990b412bd5f433b7d2750b684f186a2400c Mon Sep 17 00:00:00 2001 From: 4wc Date: Mon, 30 Mar 2026 10:45:14 -0400 Subject: [PATCH] Test to fix Ubuntu workflow on git. Explicitly added a new step to make the working directory safe in git on the ci.yml file: Make Workspace Directory Safe --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f5ec80..b91c873 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,10 @@ jobs: fetch-depth: 0 set-safe-directory: '' + # Force working directory to be safe. + - name: Make Workspace Directory Safe + run: git config --global --add safe.directory /__w/virtual-accelerator/virtual-accelerator + # Install micromamba - name: Install mamba uses: mamba-org/setup-micromamba@v1