Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
# documented metadata-driven helper scripts without enabling broad
# command execution. `uv lock` is allowed exactly so Python
# dependency PRs can keep uv.lock synchronized with pyproject.toml.
RENOVATE_ALLOWED_COMMANDS: '^(?:uv lock|\./\.renovate/[A-Za-z0-9_.-]+\.py|\./scripts/sync-shared)$'
RENOVATE_ALLOWED_COMMANDS: '^(?:uv lock|install-tool uv && uv lock|\./\.renovate/[A-Za-z0-9_.-]+\.py|\./scripts/sync-shared)$'
# Optional dry-run for debugging without creating branches/PRs.
RENOVATE_DRY_RUN: ${{ inputs.dry-run }}
# Normal Renovate lockfile maintenance must not enforce the
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_ONBOARDING: 'false'
RENOVATE_REQUIRE_CONFIG: 'required'
RENOVATE_ALLOWED_COMMANDS: '^(?:uv lock|\./\.renovate/[A-Za-z0-9_.-]+\.py|\./scripts/sync-shared)$'
RENOVATE_ALLOWED_COMMANDS: '^(?:uv lock|install-tool uv && uv lock|\./\.renovate/[A-Za-z0-9_.-]+\.py|\./scripts/sync-shared)$'
PNPM_CONFIG_MINIMUM_RELEASE_AGE: '0'
RENOVATE_CUSTOM_ENV_VARIABLES: '{"PNPM_CONFIG_MINIMUM_RELEASE_AGE":"0"}'
RENOVATE_REPORT_TYPE: 'file'
Expand Down
2 changes: 1 addition & 1 deletion default.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"matchManagers": ["pep621", "custom.regex"],
"matchFileNames": ["pyproject.toml"],
"postUpgradeTasks": {
"commands": ["uv lock"],
"commands": ["install-tool uv && uv lock"],
"fileFilters": ["uv.lock"],
"executionMode": "branch"
}
Expand Down