Update Deps #1262
This file contains hidden or 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 Deps | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" # Every day at midnight | |
| jobs: | |
| buildx: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install NCU | |
| run: npm install -g npm-check-updates | |
| - name: Run npm-check-updates | |
| run: ncu -u --reject node-fetch | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v7 | |
| with: | |
| author_name: ${{ github.actor }} | |
| author_email: ${{ github.actor }}@users.noreply.github.com | |
| message: Update package.json | |
| add: package.json |