Skip to content

Commit

Permalink
Add upgrade-deps workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffano committed Aug 11, 2021
1 parent a25b930 commit 646d22c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/upgrade-deps.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Upgrade Dependencies
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16'
- run: git config --global user.email "pakkun@cliffano.com"
- run: git config --global user.name "pakkunbot"
- run: npm install -g bob
- run: bob updep build
- run: git commit -am "Upgrade dependencies to latest"
- uses: ad-m/github-push-action@master
with:
tags: true
github_token: ${{ secrets.BUILD_TOKEN }}
branch: ${{ github.ref }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- Add node 15 and 16 to CI workflow
- Add upgrade-deps workflow

## 2.1.0 - 2021-07-17
### Added
Expand Down

0 comments on commit 646d22c

Please sign in to comment.