Update dependencies #202
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 dependencies | |
| on: | |
| schedule: | |
| - cron: '0 20 * * 0' # Runs at 20:00 on Sunday | |
| workflow_dispatch: | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 8.6.7 | |
| - name: install node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18.16.1 | |
| cache: 'pnpm' | |
| - name: update dependencies | |
| run: pnpm update:dependencies | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v3 | |
| with: | |
| token: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
| branch: update-dependencies | |
| commit-message: 'chore: update dependencies' | |
| title: 'chore: update dependencies' | |
| body: > | |
| This PR is auto-generated by a GitHub action. |