Skip to content

Commit 2294d49

Browse files
committed
Sort the keys in the Dependabot configuration
Our standard practice for YAML files is to sort keys alphabetically.
1 parent d311825 commit 2294d49

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,8 @@
55
# these updates when the pull request(s) in the appropriate skeleton are merged
66
# and Lineage processes these changes.
77

8-
version: 2
98
updates:
10-
- package-ecosystem: github-actions
11-
directory: /
12-
schedule:
13-
interval: weekly
9+
- directory: /
1410
# ignore:
1511
# # Managed by cisagov/skeleton-generic
1612
# - dependency-name: actions/cache
@@ -19,13 +15,17 @@ updates:
1915
# - dependency-name: actions/setup-python
2016
# - dependency-name: hashicorp/setup-terraform
2117
# - dependency-name: mxschmitt/action-tmate
18+
package-ecosystem: github-actions
19+
schedule:
20+
interval: weekly
2221

23-
- package-ecosystem: pip
24-
directory: /
22+
- directory: /
23+
package-ecosystem: pip
2524
schedule:
2625
interval: weekly
2726

28-
- package-ecosystem: terraform
29-
directory: /
27+
- directory: /
28+
package-ecosystem: terraform
3029
schedule:
3130
interval: weekly
31+
version: 2

0 commit comments

Comments
 (0)