Add details about keeping actions updated using Dependabot.

Fixes: 32
This commit is contained in:
Grant Slater 2022-03-28 02:43:10 +01:00
parent d116b6e837
commit 288a313b83

View file

@ -166,3 +166,19 @@ and then define the `creds.json` file as follows.
}
}
```
## Keep up-to-date with GitHub Dependabot
Since [Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot)
has [native GitHub Actions support](https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#package-ecosystem),
to enable it on your GitHub repo all you need to do is add the `.github/dependabot.yml` file:
```yaml
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
```