diff --git a/diff-sha.sh b/diff-sha.sh index fc1ff303..7243f7f0 100644 --- a/diff-sha.sh +++ b/diff-sha.sh @@ -61,7 +61,8 @@ if [[ -z $GITHUB_EVENT_PULL_REQUEST_BASE_REF ]]; then echo "Fetching remote refs..." # shellcheck disable=SC2086 git fetch $EXTRA_ARGS -u --progress --deepen="$INPUT_FETCH_DEPTH" origin +refs/heads/"$CURRENT_BRANCH":refs/remotes/origin/"$CURRENT_BRANCH" 1>/dev/null - git submodule update --init --recursive || true + # shellcheck disable=SC2086 + git submodule foreach git fetch $EXTRA_ARGS -u --progress --deepen="$INPUT_FETCH_DEPTH" || true fi echo "::debug::Getting HEAD SHA..."