-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdependabot.yml
More file actions
36 lines (34 loc) · 1.28 KB
/
dependabot.yml
File metadata and controls
36 lines (34 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
# GitHub Dependabot configuration
# Note: there is no interaction between this
# configuration and dependabot security updates.
# See here for more information:
# https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/about-dependabot-security-updates#about-dependabot-security-updates
version: 2
updates:
# GitHub Actions checks
# See here for more information:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "monthly"
groups:
github-actions:
patterns:
- "*"
# Perform checks and updates for python uv environment.
# This depends on changes to dependabot via:
# https://github.com/dependabot/dependabot-core/pull/10040
# See here for more information:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#pip-and-pip-compile
- package-ecosystem: "uv"
directory: "/"
schedule:
# Check for updates to uv environment files every week
interval: "monthly"
groups:
python-packages:
patterns:
- "*"