diff --git a/action.yml b/action.yml index ed6a93d..9bbf10d 100644 --- a/action.yml +++ b/action.yml @@ -25,6 +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 \"Run pkgcheck\" pkgcheck --color y ci --failures ~/failures.json --exit GentooCI ${{ inputs.args }} ; scan_exit_status=$? ; pkgcheck replay --color y ~/failures.json ;