This repository was archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdependabot.yml
More file actions
51 lines (46 loc) · 1.25 KB
/
dependabot.yml
File metadata and controls
51 lines (46 loc) · 1.25 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Please see the documentation for all configuration options:
# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
# Maintain dependencies for Composer
- package-ecosystem: "composer"
directory: "/"
versioning-strategy: increase
schedule:
interval: "weekly"
day: "friday"
time: "07:00"
timezone: "Asia/Yekaterinburg"
labels:
- "dependencies"
# Enable version updates for Docker
- package-ecosystem: "docker"
# Look for a `Dockerfile` in the `root` directory
directory: "/"
schedule:
interval: "weekly"
day: "friday"
time: "07:00"
timezone: "Asia/Yekaterinburg"
labels:
- "dependencies"
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
time: "07:00"
timezone: "Asia/Yekaterinburg"
labels:
- "dependencies"
# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
time: "07:00"
timezone: "Asia/Yekaterinburg"
labels:
- "dependencies"