Skip to content

Commit

Permalink
chore(dependabot): revise configuration (#10186)
Browse files Browse the repository at this point in the history
_incidental_

## Description
To reduce manual effort to keep dependencies green.

There was already a dependabot config file but it seems inoperational. 

This changes it to
- Operate on all package directories
- Update devDependencies too
- Weekly instead of daily
- Only "patch" level bug fixes for now

If that doesn't start it running I'll dig in more

### Security Considerations

Trusts Github to only update patch releases. Increases rate of supply chain updates.

But this is just automating what we do already. PRs will still be reviewed.

### Scaling Considerations
none

### Documentation Considerations
none

### Testing Considerations
Needs master to test

### Upgrade Considerations
none
  • Loading branch information
mergify[bot] authored Oct 2, 2024
2 parents 813e54c + d37de09 commit 18a1b58
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
directories:
- '/'
- '/packages/*'
schedule:
interval: 'daily'
allow:
- dependency-type: 'production'
dependency-name: '*'
interval: 'weekly'
groups:
patches:
update-types:
- 'patch'

- package-ecosystem: 'gomod'
directory: '/'
schedule:
Expand Down

0 comments on commit 18a1b58

Please sign in to comment.