From 7cd688c9c07f1706c2b12afdafbcc10d3cf2c421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Thu, 12 Mar 2026 16:51:03 +0000 Subject: [PATCH] Fix syntax for `pipx install` command in base setup --- .github/actions/base-setup/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/base-setup/action.yml b/.github/actions/base-setup/action.yml index a1411c2..106b68f 100644 --- a/.github/actions/base-setup/action.yml +++ b/.github/actions/base-setup/action.yml @@ -122,9 +122,9 @@ runs: echo "::group::Upgrade packaging dependencies" python -m pip install --upgrade pip pipx if [ "$RUNNER_OS" != "Windows" ]; then - pipx install hatch>=1.16.5 --python $(which python) + pipx install "hatch>=1.16.5" --python $(which python) else - pipx install hatch>=1.16.5 + pipx install "hatch>=1.16.5" fi echo "::endgroup::"