From ecb7cdae88797882786c0b6c21e2cfaf30479498 Mon Sep 17 00:00:00 2001 From: Sergey Kuznetsov Date: Thu, 7 Mar 2024 18:53:50 +0000 Subject: [PATCH] Add workdir to safe directory in check format (#1247) Fixes #1246. --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 751ba475..3cf21367 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,10 @@ jobs: container: image: rippleci/clio_ci:latest steps: + - name: Fix git permissions on Linux + shell: bash + run: git config --global --add safe.directory $PWD + - uses: actions/checkout@v4 - name: Run formatters id: run_formatters