From 8bb8c4f0f7f5027e78208a8bf3ec221ecfc5bb9d Mon Sep 17 00:00:00 2001 From: Arthur Zamarin Date: Wed, 17 Jan 2024 23:19:09 +0200 Subject: [PATCH] better safe directory marking --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 9bbf10d..244e01e 100644 --- a/action.yml +++ b/action.yml @@ -25,7 +25,7 @@ runs: runner() { echo \"::group::${1}\"; shift 1; \"$@\"; local exit=$?; echo; echo \"::endgroup::\"; return $exit; } ; runner \"Sync gentoo repo\" pmaint sync gentoo || exit 1 ; runner \"Update repo metadata\" pmaint regen --dir ~/.cache/pkgcheck/repos . ; - runner \"Marking workspace safe for git\" git config --global --add safe.directory ${{ github.workspace }} ; + runner \"Marking workspace safe for git\" git config --global --add safe.directory '*' ; runner \"Run pkgcheck\" pkgcheck --color y ci --failures ~/failures.json --exit GentooCI ${{ inputs.args }} ; scan_exit_status=$? ; pkgcheck replay --color y ~/failures.json ;