build(dependabot): add Dependabot to the repository (#1577)

This commit is contained in:
Pieter Willekens
2023-10-06 22:19:52 +02:00
committed by GitHub
parent d8430f54ed
commit 8a43ecafd1

21
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
# Set update schedule for GitHub Actions
version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
# Check for updates to GitHub Actions every week
interval: 'weekly'
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
allow:
# Ignore major updates to all dependencies. We're using old versions of some packages that are incompatible with newer versions of other packages.
- dependency-name: '*'
update-type: 'semver:non-major'
dependency-type: 'direct'
assignees:
- 'meteyou'