Skip to content

Update All Dependencies #3

Update All Dependencies

Update All Dependencies #3

name: Update All Dependencies
on:
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Checkout Branch
run: git checkout main
- name: Configure CI Git User
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
- name: Update
run: |
npm ci
npm update
- name: Git Push
run: |
git add package.json package-lock.json
git commit -m "chore: update dependencies"
git push