-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathdependabot.yml
39 lines (35 loc) · 1.43 KB
/
dependabot.yml
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
37
38
39
########################################################################################################################################
# GitHub Dependabot Config info #
# For details on how this file works refer to: #
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file #
########################################################################################################################################
version: 2
updates:
# Maintain dependencies for NPM
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'monthly'
allow:
# Focus on main dependencies, not devDependencies
- dependency-type: 'production'
# Maintain dependencies for GitHub Actions
# - Check for updates once a month
# - Group all updates into a single PR
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
groups:
all-actions:
patterns: ['*']
# Maintain dependencies for Docker
- package-ecosystem: 'docker'
directory: '/'
schedule:
interval: 'monthly'
# Maintain dependencies for Cargo
- package-ecosystem: 'cargo'
directory: '/'
schedule:
interval: 'monthly'