-
The README mentions using Dependabot to keep the action up to date. How do I do this? |
Beta Was this translation helpful? Give feedback.
Answered by
JamesIves
Jan 12, 2022
Replies: 2 comments 2 replies
-
To have Dependabot create version bump pull requests within your project simply add a version: 2
updates:
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: daily
time: '10:00'
open-pull-requests-limit: 10 Dependabot will create daily checks against your project and make pull requests for you increasing the version number whenever a newer iteration of the action is available. You can learn more about Dependabot here. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JamesIves
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To have Dependabot create version bump pull requests within your project simply add a
.github/dependabot.yml
file with the following:Dependabot will create daily checks against your project and make pull requests for you increasing the version number whenever a newer iteration of the action is available. You can learn more about Dependabot here.