From 6bcc9a3b93e4d61f9922273b950c05f183a11853 Mon Sep 17 00:00:00 2001 From: konkerama Date: Fri, 8 May 2026 11:52:01 +0300 Subject: [PATCH] fix: uv venv A virtual environment already exists error --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index a0bd6dc..2a052d4 100644 --- a/action.yml +++ b/action.yml @@ -52,7 +52,7 @@ runs: installation_directory="${{ steps.set-installation-directory.outputs.installation_directory }}" desired_python_version="${{ steps.find-desired-python-version.outputs.desired_python_version }}" - uv venv --python "${desired_python_version}" "${installation_directory}" + uv venv --clear --python "${desired_python_version}" "${installation_directory}" - name: Add python to PATH shell: bash