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
| `GITHUB_TOKEN` | [GITHUB_TOKEN](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token) as provided by `secrets` |
104
116
105
-
## How can I help ?
117
+
## Keep up-to-date with GitHub Dependabot
118
+
119
+
Since [Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot)
120
+
has [native GitHub Actions support](https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#package-ecosystem),
121
+
to enable it on your GitHub repo all you need to do is add the `.github/dependabot.yml` file:
122
+
123
+
```yaml
124
+
version: 2
125
+
updates:
126
+
# Maintain dependencies for GitHub Actions
127
+
- package-ecosystem: "github-actions"
128
+
directory: "/"
129
+
schedule:
130
+
interval: "daily"
131
+
```
132
+
133
+
## How can I help?
106
134
107
135
All kinds of contributions are welcome :raised_hands:! The most basic way to show your support is to star :star2: the project, or to raise issues :speech_balloon: You can also support this project by [**becoming a sponsor on GitHub**](https://github.com/sponsors/crazy-max) :clap: or by making a [Paypal donation](https://www.paypal.me/crazyws) to ensure this journey continues indefinitely! :rocket:
0 commit comments