diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d23104bd..e4d63992 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,7 @@ updates: - package-ecosystem: github-actions directory: / schedule: - interval: weekly + interval: daily labels: - "topic: dependencies" - "tool: github-actions" @@ -14,15 +14,4 @@ updates: actions: patterns: ["*"] -- package-ecosystem: uv - directory: / - schedule: - interval: daily - labels: - - "topic: dependencies" - - "tool: uv" - commit-message: - prefix: "⬆️ " - groups: - actions: - patterns: ["*"] +# Renovate takes care of uv diff --git a/.github/renovate.json5 b/.github/renovate.json5 index f5bfddc0..721c8fde 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -9,12 +9,14 @@ "pep723" ], "lockFileMaintenance": { - "enabled": true + "enabled": true, + "schedule": ["* 9-23 * * 1-6"] }, "pep723": { "managerFilePatterns": [ "/tool/stubtest\\.py/", "/tool/ufunc\\.py/" ] - } + }, + "commitMessagePrefix": "👾" } diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 9a19918d..a5fcf24d 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -4,7 +4,7 @@ permissions: on: schedule: - - cron: "0/15 * * * *" + - cron: "0 0/1 * * *" # every hour workflow_dispatch: jobs: @@ -13,9 +13,7 @@ jobs: steps: - uses: actions/checkout@v4.2.2 - - uses: renovatebot/github-action@v43.0.5 + - uses: renovatebot/github-action@v43.0.6 with: configurationFile: .github/renovate-config.json token: ${{ secrets.RENOVATE_TOKEN }} - env: - LOG_LEVEL: "debug"