summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-09-10 18:46:12 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-09-10 18:46:12 +0200
commitd09a78dd49afface182e14bf7bce9bd5510170b5 (patch)
tree7e01b64f0edd1cf8e5ca84cc1c8fa620e35995ed /.github
parentAdd CI stage to push to DockerHub (diff)
downloadseven-wonders-d09a78dd49afface182e14bf7bce9bd5510170b5.tar.gz
seven-wonders-d09a78dd49afface182e14bf7bce9bd5510170b5.tar.bz2
seven-wonders-d09a78dd49afface182e14bf7bce9bd5510170b5.zip
Enable Dependabot for github actions
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 00000000..2c7d1708
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,7 @@
+version: 2
+updates:
+ # Maintain dependencies for GitHub Actions
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "daily"
bgstack15