diff options
Diffstat (limited to '.github/dependabot.yml')
| -rw-r--r-- | .github/dependabot.yml | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 426893be2a..57da742e5c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,18 +1,29 @@ version: 2 updates: - package-ecosystem: 'github-actions' - directory: '/' - schedule: - interval: 'daily' - - package-ecosystem: 'github-actions' - directory: '/.github/actions/slack' - schedule: - interval: 'daily' - - package-ecosystem: 'github-actions' - directory: '/.github/actions/setup/directories' + directories: + - '/' + - '/.github/actions/slack' + - '/.github/actions/setup/directories' schedule: interval: 'daily' + groups: + github-actions: + patterns: + - "*" - package-ecosystem: 'cargo' - directory: '/yjit' + directories: + - '/yjit' + - '/zjit' + exclude-paths: + - 'gc/mmtk/**' + schedule: + interval: 'monthly' + groups: + jit: + patterns: + - "*" + - package-ecosystem: 'vcpkg' + directory: '/' schedule: interval: 'daily' |
