From 1a4af623f16a8d766d063b47f6973904819a2f41 Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Mon, 3 Feb 2025 13:28:36 -0500 Subject: [PATCH] x --- .github/actions/uv_setup/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/uv_setup/action.yml b/.github/actions/uv_setup/action.yml index cfa50e8f3d8..15e1fa419d0 100644 --- a/.github/actions/uv_setup/action.yml +++ b/.github/actions/uv_setup/action.yml @@ -16,8 +16,13 @@ runs: steps: - uses: actions/checkout@v4 - - name: Install uv and set the python version + - name: Install uv uses: astral-sh/setup-uv@v5 with: version: ${{ env.UV_VERSION }} + + - uses: actions/setup-python@v5 + name: Setup python ${{ inputs.python-version }} + id: setup-python + with: python-version: ${{ inputs.python-version }}