From a21d268c839ae5a19f98b20e8e0513910a672ba1 Mon Sep 17 00:00:00 2001 From: vvillait88 Date: Fri, 24 Jul 2026 13:43:20 -0700 Subject: [PATCH] Move setup-uv to v9 python-commerce already runs v9.0.0 green; this repo was the remaining Python one behind. v9's only breaking change is the `prune-cache` default flipping to false, which affects Actions cache size rather than behaviour, and the uv cache here is managed by its own actions/cache step. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/security.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b45e8a..9c43b16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: timeout-minutes: 10 steps: - uses: useblacksmith/checkout@v1 - - uses: astral-sh/setup-uv@v8.3.2 + - uses: astral-sh/setup-uv@v9.0.0 - run: uv python install 3.12 - uses: actions/cache@v6 with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 482b15b..66fcf20 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v7 - - uses: astral-sh/setup-uv@v8.3.2 + - uses: astral-sh/setup-uv@v9.0.0 - name: Set version from tag run: sed -i "s/^version = .*/version = \"${GITHUB_REF_NAME#v}\"/" pyproject.toml diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 7603844..8f833bf 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -36,7 +36,7 @@ jobs: timeout-minutes: 5 steps: - uses: useblacksmith/checkout@v1 - - uses: astral-sh/setup-uv@v8.3.2 + - uses: astral-sh/setup-uv@v9.0.0 - uses: actions/setup-python@v7 with: python-version: "3.13"