diff --git a/renovate.json b/.github/renovate.json similarity index 86% rename from renovate.json rename to .github/renovate.json index fdbb193774e..fc7feb3f473 100644 --- a/renovate.json +++ b/.github/renovate.json @@ -1,12 +1,15 @@ { + "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:base", ":prConcurrentLimit20", - ":preserveSemverRanges" + ":preserveSemverRanges", + ":semanticPrefixChore" ], "ignorePresets": [ ":dependencyDashboard", - ":ignoreModulesAndTests" + ":ignoreModulesAndTests", + ":semanticPrefixFixDepsChoreOthers" ], "semanticCommits": "enabled", "commitMessageTopic": "{{depName}}", @@ -34,7 +37,6 @@ { "matchPackagePatterns": ["(^|/)black$"], "versioning": "pep440", - "ignoreUnstable": false, "groupName": "black" }, { diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 73449e10a69..13e9df629b4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,10 +14,8 @@ jobs: - uses: actions/setup-python@v4 with: python-version: ">=3.7" - - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: pip-${{hashFiles('test/requirements*.txt')}} + cache: pip + cache-dependency-path: test/requirements*.txt - uses: actions/cache@v3 with: path: ~/.cache/pre-commit