From 7ad3518676305f655b31054145a5a9a7f90d6204 Mon Sep 17 00:00:00 2001 From: "A bot of @njzjz" <48687836+njzjz-bot@users.noreply.github.com> Date: Fri, 4 Oct 2024 23:18:02 -0400 Subject: [PATCH] chore(ci): use astral-sh/setup-uv action (#227) Generated by the task: https://github.com/njzjz-bot/njzjz-bot/issues/9. --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 996c814..dd81650 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,12 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install uv - run: curl -LsSf https://astral.sh/uv/install.sh | sh + uses: astral-sh/setup-uv@v3 + with: + enable-cache: true + cache-dependency-glob: | + **/requirements*.txt + **/pyproject.toml if: runner.os != 'Linux' - name: Build wheels uses: pypa/cibuildwheel@v2.21