From b5b2f89ad3ebffe976dd6d0eed808abeb8ace0e8 Mon Sep 17 00:00:00 2001 From: Mohammed Sohail Date: Tue, 21 Feb 2023 17:51:05 +0000 Subject: [PATCH] patc: broken CI builds --- .github/workflows/binary_release.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/binary_release.yaml b/.github/workflows/binary_release.yaml index 732f9ed..849341a 100644 --- a/.github/workflows/binary_release.yaml +++ b/.github/workflows/binary_release.yaml @@ -13,10 +13,16 @@ jobs: environment: build steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 + - name: Workaround Git Security Warning + run: | + # Workaround a bug in github actions: + # https://github.com/actions/runner-images/issues/6775. + git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Set up Go uses: actions/setup-go@v2 with: