From 25dcde8a309d6f273c82699af7967ef46048e5a1 Mon Sep 17 00:00:00 2001 From: JoC0de <53140583+JoC0de@users.noreply.github.com> Date: Sun, 3 Mar 2024 17:59:42 +0100 Subject: [PATCH] fix GitHub action of last PR (#626) --- .github/actions/checkout/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/checkout/action.yml b/.github/actions/checkout/action.yml index 9f75596b..1339ab74 100644 --- a/.github/actions/checkout/action.yml +++ b/.github/actions/checkout/action.yml @@ -3,6 +3,10 @@ description: Checkout the source code. For pull requests it checks out the merge runs: using: composite steps: + - name: clear .git from previous checkout + shell: bash + run: rm -r .git + - name: Checkout normal uses: actions/checkout@v4 if: github.event_name != 'pull_request_target'