diff --git a/.github/workflows/git-version-check.yml b/.github/workflows/git-version-check.yml index d3ad969..6b7f25e 100644 --- a/.github/workflows/git-version-check.yml +++ b/.github/workflows/git-version-check.yml @@ -38,8 +38,8 @@ jobs: # fetch-tags: false - name: "Print git --version" run: | - which git || true - git --version || true + which git || echo "::warning::git does not appear to be installed" + git --version || echo "::warning::could not determine installed version of git" # - name: "Print .git/config" # run: cat .git/config # - uses: actions/setup-dotnet@v4