-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdependabot.yml
More file actions
49 lines (45 loc) · 1.3 KB
/
Copy pathdependabot.yml
File metadata and controls
49 lines (45 loc) · 1.3 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
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
# Each ecosystem appears once per branch (main + develop) so both stay current independently; rationale in
# AGENTS.md "Branching Model". This repo ships a Docker image only: github-actions plus the Docker base image.
version: 2
updates:
# github-actions, main
- package-ecosystem: "github-actions"
target-branch: "main"
directory: "/"
schedule:
interval: "daily"
groups:
actions-deps:
patterns:
- "*"
# github-actions, develop
- package-ecosystem: "github-actions"
target-branch: "develop"
directory: "/"
schedule:
interval: "daily"
groups:
actions-deps:
patterns:
- "*"
# docker (Docker/Dockerfile base image), main
- package-ecosystem: "docker"
target-branch: "main"
directory: "/Docker"
schedule:
interval: "daily"
groups:
docker-deps:
patterns:
- "*"
# docker (Docker/Dockerfile base image), develop
- package-ecosystem: "docker"
target-branch: "develop"
directory: "/Docker"
schedule:
interval: "daily"
groups:
docker-deps:
patterns:
- "*"