We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 928b6a7 commit bc66b11Copy full SHA for bc66b11
1 file changed
.github/actions/setup-uv/action.yml
@@ -21,6 +21,9 @@ inputs:
21
save-cache:
22
description: "Whether to save the cache after the run"
23
default: ${{ github.ref == 'refs/heads/develop' }}
24
+ cache-suffix:
25
+ description: "Suffix for the cache key"
26
+ required: false
27
28
runs:
29
using: "composite"
@@ -32,6 +35,7 @@ runs:
32
35
enable-cache: true
33
36
prune-cache: ${{ inputs.prune-cache }}
34
37
save-cache: ${{ inputs.save-cache }}
38
+ cache-suffix: ${{ inputs.cache-suffix }}
39
- name: "Setup up Python"
40
shell: bash
41
run: uv python install ${{ inputs.python-version }}
0 commit comments