diff --git a/.github/actions/setup-claude-code-action/action.yml b/.github/actions/setup-claude-code-action/action.yml index dbc832aba..de25bab99 100644 --- a/.github/actions/setup-claude-code-action/action.yml +++ b/.github/actions/setup-claude-code-action/action.yml @@ -41,7 +41,7 @@ runs: - name: Setup Python uses: actions/setup-python@v6 with: - python-version: "3.14" + python-version: "3.13" - name: Install LiteLLM dependencies shell: bash diff --git a/.github/renovate.json b/.github/renovate.json index 3d6fb014a..3f92763da 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -11,7 +11,7 @@ "commitMessageAction": "Renovate: Update", "constraints": { "go": "1.26", - "python": "3.14" + "python": "3.13" }, "dependencyDashboardOSVVulnerabilitySummary": "all", "osvVulnerabilityAlerts": true, @@ -62,10 +62,6 @@ } ], "packageRules": [ - { - "matchManagers": ["tool-constraint"], - "enabled": false - }, { "matchPackageNames": [ "golang" @@ -125,13 +121,20 @@ "enabled": false }, { - "matchPackageNames": [ - "python" - ], - "matchFileNames": [ - ".github/actions/setup-claude-code-action/**" - ], + "matchDepTypes": ["tool-constraint"], "enabled": false + }, + { + "matchPackageNames": ["python"], + "allowedVersions": "3.13.x" + }, + { + "matchFileNames": [".github/actions/setup-claude-code-action/action.yml"], + "automerge": false + }, + { + "matchFileNames": [".github/renovate.json"], + "automerge": false } ], "prHourlyLimit": 0,