diff options
| author | John Bampton <[email protected]> | 2021-02-13 17:34:33 +1000 |
|---|---|---|
| committer | John Bampton <[email protected]> | 2021-02-13 17:37:30 +1000 |
| commit | d52da3fe77c80eabd462ff7218ae607167e5d561 (patch) | |
| tree | 697b48224999b9434ea37855f479c2f890e3c8c6 /.github | |
| parent | 9a9c95986a2bb5d647f7a610c04987cd2b9397f4 (diff) | |
| download | mruby-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.yml | 10 |
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" |
