Skip to content

Commit 8f37788

Browse files
albertotbclaude
andauthored
feat: add uv-version parameter to security-updates action (#10)
Allow callers to pin the uv version installed by the composite action, matching the parameter already available in the reusable workflow. https://claude.ai/code/session_01HaMBVq6NwapAMcNxsSF1uj Co-authored-by: Claude <noreply@anthropic.com>
1 parent 4ff3596 commit 8f37788

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

security-updates/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ inputs:
2020
description: Title for the PR
2121
required: false
2222
default: "security: upgrade vulnerable dependencies"
23+
uv-version:
24+
description: uv version to install
25+
required: false
26+
default: latest
2327

2428
runs:
2529
using: composite
@@ -30,6 +34,8 @@ runs:
3034
client-id: ${{ inputs.app-id }}
3135
private-key: ${{ inputs.private-key }}
3236
- uses: astral-sh/setup-uv@v7
37+
with:
38+
version: ${{ inputs.uv-version }}
3339
- name: Configure git with app token
3440
shell: bash
3541
run: |

0 commit comments

Comments
 (0)