-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependabot.yml
More file actions
38 lines (36 loc) · 982 Bytes
/
dependabot.yml
File metadata and controls
38 lines (36 loc) · 982 Bytes
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
# Dependabot: Automated updates
# - npm:
# Version-updates: Weekly on Sundays, minor/patch grouped, major individual
# Security-updates: Immediate when vulnerabilities detected, grouped
# - GitHub Actions: Keeps workflow action versions current (e.g., actions/checkout)
# Docs: https://docs.github.com/en/code-security/dependabot
version: 2
updates:
# npm dependencies
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
groups:
npm-dependencies:
applies-to: version-updates
update-types:
- "minor"
- "patch"
npm-security:
applies-to: security-updates
update-types:
- "minor"
- "patch"
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
groups:
github-actions:
applies-to: version-updates
patterns:
- "*"