Skip to content

Commit c98a22a

Browse files
authored
[CI] Make dependabot upd composite actions (#21761)
dependabot/dependabot-core#6704 prevents dependabot from updating all .yml files in the repo. Paths other than .github/workflows should be specified. Example PR: KornevNikita#15
1 parent 365d26d commit c98a22a

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
version: 2
22
updates:
33
- package-ecosystem: "github-actions"
4-
directory: "/"
4+
directories:
5+
- "/"
6+
# Required to update composite actions.
7+
# See: https://github.com/dependabot/dependabot-core/issues/6704
8+
- "/devops/actions/*"
9+
- "/devops/actions/*/*"
10+
- "/devops/actions/*/*/*"
11+
# 3 asterisks are enough at the moment, adding more just in case:
12+
- "/devops/actions/*/*/*/*"
13+
- "/devops/actions/*/*/*/*/*"
14+
515
schedule:
616
interval: "monthly"
717
groups:

0 commit comments

Comments
 (0)