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: