summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2021-02-13 17:34:33 +1000
committerJohn Bampton <[email protected]>2021-02-13 17:37:30 +1000
commitd52da3fe77c80eabd462ff7218ae607167e5d561 (patch)
tree697b48224999b9434ea37855f479c2f890e3c8c6 /.github
parent9a9c95986a2bb5d647f7a610c04987cd2b9397f4 (diff)
downloadmruby-d52da3fe77c80eabd462ff7218ae607167e5d561.tar.gz
mruby-d52da3fe77c80eabd462ff7218ae607167e5d561.zip
feat: add Dependabot config file
Set for GitHub Actions to check for update everyday. When you add or update the dependabot.yml file, this triggers an immediate check for version updates. Any options that also affect security updates are used the next time a security alert triggers a pull request for a security update. https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..dac4cac33
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,10 @@
+# Basic set up
+
+version: 2
+updates:
+
+ # Maintain dependencies for GitHub Actions
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "daily"