Skip to content

Commit 4f3a4c1

Browse files
authored
fix: missing dependabot updates aws#4258
Problem: Dependabot updates are much less frequent. No way to troubleshoot, but correlates with the `groups` directive added in 06507c3 (4 months ago). Solution: - Review the inscrutable documentation: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file - Remove the `dependency-type: production` directive. - Add the `allow: dependency-name: *` directive. - Note: intentionally _not_ using ["allow: dependency-type:all" directive](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#allow); it enables updates for _transitive_ dependencies. see also aws/aws-toolkit-common#666
1 parent b49ea0b commit 4f3a4c1

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/dependabot.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,28 @@ updates:
66
- package-ecosystem: 'npm'
77
directory: '/' # Location of package manifests.
88
target-branch: 'master' # Avoid updates to "staging".
9+
commit-message:
10+
prefix: 'deps'
911
schedule:
1012
interval: 'daily'
13+
allow:
14+
- dependency-name: '*'
1115
groups:
1216
aws-sdk:
13-
dependency-type: 'production'
1417
patterns:
1518
- '@aws-sdk/*'
1619
vscode-lsp:
17-
dependency-type: 'production'
1820
patterns:
1921
- 'vscode-lang*'
2022
- package-ecosystem: 'github-actions'
2123
directory: '/'
2224
target-branch: 'master' # Avoid updates to "staging".
25+
commit-message:
26+
prefix: 'deps'
2327
schedule:
2428
interval: 'daily'
29+
allow:
30+
- dependency-name: '*'
2531
groups:
2632
github-actions:
2733
patterns:

0 commit comments

Comments
 (0)