From 8019563072d4be485ca69359ff0c3863cb03b6e7 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Wed, 20 Apr 2022 08:50:25 -0400 Subject: [PATCH] work around CVE-2022-24765 --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4179e1d..909d9a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,6 +14,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Work around CVE-2022-24765 + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Compile starter-project app run: make working-directory: 'apps/starter-project'