Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Update Dependencies #40

Update Dependencies

Update Dependencies #40

Workflow file for this run

name: Update Dependencies
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
Update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- run: |
npm update --save
git config --global user.email "w11bot@andrewstech.me"
git config --global user.name "win11bot"
git add .
git commit -m "Update Dependencies"
git push