From d59f0ebc811ff86c4b54f6b78bfe1edba645a48b Mon Sep 17 00:00:00 2001 From: Abe Hanoka Date: Sat, 21 Dec 2024 20:43:58 -0500 Subject: [PATCH] fix how uv is used --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index ade81b3..1659c10 100644 --- a/action.yml +++ b/action.yml @@ -8,11 +8,11 @@ inputs: runs: using: composite steps: - - run: python -m pip install --upgrade uv + - name: Set up uv + uses: astral-sh/setup-uv@v5 + - run: uv pip install --system pre-commit shell: bash - - run: python -m uv pip install --system pre-commit - shell: bash - - run: python -m uv pip freeze + - run: uv pip freeze shell: bash - uses: actions/cache@v4 with: