update deps #1783
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 5 * * 5" | |
| jobs: | |
| udpate-deps: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [24.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.1 | |
| name: Install Bun | |
| - run: bun install | |
| - run: bun run build | |
| - run: bun run test | |
| - run: bun run update | |
| - run: bun install | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| token: ${{ secrets.PR_CREATE_TOKEN }} | |
| commit-message: Update dependencies | |
| title: "[Codependence] update dependencies" | |
| body: | | |
| ## Dependency updates | |
| Auto-generated by [codependence][1] using [create-pull-request][2] | |
| [1]: https://github.com/yowainwright/pastoralist | |
| [2]: https://github.com/peter-evans/create-pull-request | |
| branch: update-dependencies | |
| labels: codependencies |