diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-09-30 14:28:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-30 14:28:34 +0100 |
commit | b2aadd81a8bed3025b94dda0886ebf75a6fcee47 (patch) | |
tree | d774cbdb7c80fe6bfb9350809397c8d18bffa5ca /.github | |
parent | Speed up calculating push actions in large rooms (#13973) (diff) | |
download | synapse-b2aadd81a8bed3025b94dda0886ebf75a6fcee47.tar.xz |
Enable dependabot updates (#13976)
Fixes https://github.com/matrix-org/synapse/issues/11828
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..9c7db1fc86 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - # "pip" is the correct setting for poetry, per https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem + package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "docker" + directory: "/docker" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" |