Update Fontsource Dependencies #18
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 Fontsource Dependencies | |
| on: | |
| repository_dispatch: | |
| types: [update-deps] | |
| workflow_dispatch: | |
| jobs: | |
| update-deps: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install | |
| run: bun install --frozen-lockfile | |
| - name: Update | |
| run: bun upgrade --latest | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v5 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| commit-message: "chore: update dependencies" | |
| title: Update Fontsource Dependencies 🎉 | |
| body: | | |
| This PR updates the Fontsource dependencies to the latest versions. | |
| It was created automatically by a GitHub Action. | |
| branch: update-fontsource-deps | |
| delete-branch: true | |
| labels: dependencies |