From 44556cf1346e13c470ca21349bf953db5a3d3f32 Mon Sep 17 00:00:00 2001 From: Dawid Weiss Date: Tue, 10 Dec 2024 14:25:00 +0100 Subject: [PATCH] Turn off autocrlf for git. --- .github/workflows/run-checks-all.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/run-checks-all.yml b/.github/workflows/run-checks-all.yml index 38dcb08a32b..37a565027f5 100644 --- a/.github/workflows/run-checks-all.yml +++ b/.github/workflows/run-checks-all.yml @@ -34,6 +34,9 @@ jobs: runs-on: ${{ matrix.os }} steps: + - name: Correct git autocrlf + run: git config --global core.autocrlf false + - uses: actions/checkout@v4 - uses: ./.github/actions/prepare-for-build @@ -57,6 +60,9 @@ jobs: runs-on: ${{ matrix.os }} steps: + - name: Correct git autocrlf + run: git config --global core.autocrlf false + - uses: actions/checkout@v4 - uses: ./.github/actions/prepare-for-build