-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathdependabot.yaml
28 lines (26 loc) · 987 Bytes
/
dependabot.yaml
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
# Use Dependabot to update GitHub Actions and the Terraform modules on our examples
version: 2
updates:
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updated GitHub Actions every week
interval: "weekly"
# DevOps Stack examples
# TODO Check if we can use a wildcard to include all subfolders in the examples folder
- package-ecosystem: "terraform"
directory: "/examples/eks" # TODO Add other examples when we are sure everything works
schedule:
# Check for updated Terraform modules daily
interval: "daily"
- package-ecosystem: "terraform"
directory: "/examples/kind" # TODO Add other examples when we are sure everything works
schedule:
# Check for updated Terraform modules daily
interval: "daily"
- package-ecosystem: "terraform"
directory: "/examples/sks" # TODO Add other examples when we are sure everything works
schedule:
# Check for updated Terraform modules daily
interval: "daily"