From bb7c051451970d1a43ad9f1fcb6ad4d40e0daebd Mon Sep 17 00:00:00 2001 From: Vitor Bandeira Date: Thu, 14 May 2026 08:44:35 -0300 Subject: [PATCH] gha: overwrite files when extracting Fix issue on self-hosted conflicts Signed-off-by: Vitor Bandeira --- .github/workflows/github-actions-clang-tidy-post.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-clang-tidy-post.yml b/.github/workflows/github-actions-clang-tidy-post.yml index 4c4672a6429..d23fc44e0e2 100644 --- a/.github/workflows/github-actions-clang-tidy-post.yml +++ b/.github/workflows/github-actions-clang-tidy-post.yml @@ -33,5 +33,5 @@ jobs: const fs = require('fs'); fs.writeFileSync('${{github.workspace}}/clang-tidy-review.zip', Buffer.from(download.data)); - name: 'Unzip artifact' - run: unzip clang-tidy-review.zip + run: unzip -o clang-tidy-review.zip - uses: The-OpenROAD-Project/clang-tidy-review/post@master