You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For continuous updating, we can use the GitHub native Dependabot.
522
+
Here is an example configuration of the bot. The config file is located in `.github/dependabot.yml`.
523
+
524
+
```yaml
525
+
version: 2
526
+
updates:
527
+
- package-ecosystem: "github-actions"
528
+
directory: "/"
529
+
schedule:
530
+
interval: "daily"
531
+
labels:
532
+
- "dependencies:ci"
533
+
commit-message:
534
+
prefix: ci
535
+
```
536
+
537
+
See the official documentation for more details about the Dependabot: [Keeping your dependencies updated automatically - GitHub Docs](https://docs.github.com/en/github/administering-a-repository/keeping-your-dependencies-updated-automatically)
0 commit comments