Skip to content

Commit

Permalink
Add dependabot config to automatically bump dependencies in CI (#22)
Browse files Browse the repository at this point in the history
* Add dependabot config to automatically bump dependencies in CI

* Include main requirements.txt in depdendabot config
  • Loading branch information
alecbcs authored Mar 25, 2024
1 parent 7b9b569 commit d90a4c3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
ignore:
# setuptools releases new versions almost daily
- dependency-name: "setuptools"
update-types: ["version-update:semver-patch"]

- package-ecosystem: "pip"
directory: "/.github/workflows/requirements"
schedule:
interval: "weekly"
ignore:
- dependency-name: "setuptools"
update-types: ["version-update:semver-patch"]

0 comments on commit d90a4c3

Please sign in to comment.