Merge pull request #68 from Firefishy/fix-dependabot-message

Add details about keeping actions updated using Dependabot.
This commit is contained in:
Koen Rouwhorst 2022-05-21 14:34:24 +02:00 committed by GitHub
commit c4d43f536d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,3 +166,25 @@ and then define the `creds.json` file as follows.
}
}
```
## Dependabot
[Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot)
is a GitHub service that helps developers to automate dependency maintenance and
keep dependencies updated to the latest versions. It has native support for
[GitHub Actions](https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#package-ecosystem),
which means you can use it in your GitHub repository to keep the DNSConrol Acion
up-to-date.
To enable Dependabot in your GitHub repository, add a `.github/dependabot.yml`
file with the following contents:
```yaml
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
```