We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a62e303 commit e079fa2Copy full SHA for e079fa2
1 file changed
action.yml
@@ -148,14 +148,15 @@ runs:
148
if: ${{ inputs.setup-python == '1' && inputs.setup-type != 'uv' }}
149
with:
150
python-version: ${{ inputs.python-version }}
151
- cache: ${{ inputs.setup-type }}
+ cache: ${{ inputs.setup-type }}-${{ inputs.python-version }}
152
- name: Install uv
153
if: ${{ inputs.setup-type == 'uv' }}
154
uses: astral-sh/setup-uv@v7
155
156
enable-cache: true
157
cache-dependency-glob: |
158
**/pyproject.toml
159
+ **/uv.lock
160
- name: Setup python version for uv
161
162
run: |
0 commit comments