From 0c2d40fda7d2f09a7a8da1199670c623040dcc5c Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 29 Jan 2023 18:23:46 +0100 Subject: [PATCH] [CI] Fix dubious ownership error --- .github/workflows/uncrustify.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/uncrustify.yml b/.github/workflows/uncrustify.yml index 31d2bd6e..2a77f690 100644 --- a/.github/workflows/uncrustify.yml +++ b/.github/workflows/uncrustify.yml @@ -17,6 +17,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 + # attempt to resolve "dubious ownership" error (https://github.com/actions/runner-images/issues/6775) + - name: Change Owner of Container Working Directory + run: chown root:root . + - name: Run style check uses: coleaeason/actions-uncrustify@v1 with: