Skip to content

Commit 9ec385a

Browse files
Update astral-sh/setup-uv action to v6.8.0 (#16129)
> [!NOTE] > Mend has cancelled [the proposed renaming](https://redirect.github.com/renovatebot/renovate/discussions/37842) of the Renovate GitHub app being renamed to `mend[bot]`. > > This notice will be removed on 2025-10-07. <hr> This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [astral-sh/setup-uv](https://redirect.github.com/astral-sh/setup-uv) | action | minor | `v6.7.0` -> `v6.8.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>astral-sh/setup-uv (astral-sh/setup-uv)</summary> ### [`v6.8.0`](https://redirect.github.com/astral-sh/setup-uv/releases/tag/v6.8.0): 🌈 Add **/*.py.lock to cache-dependency-glob [Compare Source](https://redirect.github.com/astral-sh/setup-uv/compare/v6.7.0...v6.8.0) #### Changes Thanks to [@&#8203;parched](https://redirect.github.com/parched) the default `cache-dependency-glob` now also find all lock files generated by `uv lock --script` #### 🚀 Enhancements - Always show prune cache output [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;597](https://redirect.github.com/astral-sh/setup-uv/issues/597)) - Add \*\*/\*.py.lock to cache-dependency-glob [@&#8203;parched](https://redirect.github.com/parched) ([#&#8203;590](https://redirect.github.com/astral-sh/setup-uv/issues/590)) #### 🧰 Maintenance - persist credentials for version update [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;584](https://redirect.github.com/astral-sh/setup-uv/issues/584)) #### 📚 Documentation - README.md: Fix Python versions and update checkout action [@&#8203;cclauss](https://redirect.github.com/cclauss) ([#&#8203;572](https://redirect.github.com/astral-sh/setup-uv/issues/572)) #### ⬆️ Dependency updates - Bump zizmorcore/zizmor-action from 0.1.2 to 0.2.0 @&#8203;[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#&#8203;571](https://redirect.github.com/astral-sh/setup-uv/issues/571)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/astral-sh/uv). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJpbnRlcm5hbCJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 00d3aa3 commit 9ec385a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
run: rustup component add rustfmt
8888

8989
- name: "Install uv"
90-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
90+
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
9191

9292
- name: "rustfmt"
9393
run: cargo fmt --all --check
@@ -228,7 +228,7 @@ jobs:
228228
- name: "Install Rust toolchain"
229229
run: rustup show
230230

231-
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
231+
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
232232
- name: "Install required Python versions"
233233
run: uv python install
234234

@@ -277,7 +277,7 @@ jobs:
277277
- name: "Install Rust toolchain"
278278
run: rustup show
279279

280-
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
280+
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
281281
- name: "Install required Python versions"
282282
run: uv python install
283283

@@ -316,7 +316,7 @@ jobs:
316316
run: |
317317
Copy-Item -Path "${{ github.workspace }}" -Destination "$Env:UV_WORKSPACE" -Recurse
318318
319-
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
319+
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
320320
- name: "Install required Python versions"
321321
run: uv python install
322322

@@ -478,7 +478,7 @@ jobs:
478478
with:
479479
fetch-depth: 0
480480
persist-credentials: false
481-
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
481+
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
482482
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
483483
- name: "Add SSH key"
484484
if: ${{ env.MKDOCS_INSIDERS_SSH_KEY_EXISTS == 'true' }}

.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id-token: write
2323
steps:
2424
- name: "Install uv"
25-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
25+
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
2626
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
2727
with:
2828
pattern: wheels_uv-*
@@ -41,7 +41,7 @@ jobs:
4141
id-token: write
4242
steps:
4343
- name: "Install uv"
44-
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
44+
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
4545
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
4646
with:
4747
pattern: wheels_uv_build-*

.github/workflows/sync-python-releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2121
with:
2222
persist-credentials: false
23-
- uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
23+
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
2424
with:
2525
version: "latest"
2626
enable-cache: true

0 commit comments

Comments
 (0)