-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Peter Evans
committed
May 6, 2020
1 parent
86047ba
commit 0dba5db
Showing
2 changed files
with
31 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| name: Update Dependencies | ||
| on: | ||
| schedule: | ||
| - cron: '0 1 * * 4' | ||
| jobs: | ||
| update-dep: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - uses: actions/setup-node@v1 | ||
| with: | ||
| node-version: '12.x' | ||
| - name: Update dependencies | ||
| run: | | ||
| npx -p npm-check-updates ncu -u | ||
| npm install | ||
| - name: Create Pull Request | ||
| uses: peter-evans/create-pull-request@v2 | ||
| with: | ||
| token: ${{ secrets.ACTIONS_BOT_TOKEN }} | ||
| commit-message: Update dependencies | ||
| committer: GitHub <noreply@github.com> | ||
| author: actions-bot <actions-bot@users.noreply.github.com> | ||
| title: Update dependencies | ||
| body: | | ||
| - Dependency updates | ||
| Auto-generated by [create-pull-request][1] | ||
|
|
||
| [1]: https://github.com/peter-evans/create-pull-request | ||
| branch: update-dependencies |
This file was deleted.
Oops, something went wrong.