This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
Update Dependencies #34
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
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 |