Skip to content

chore(deps): bump typescript from 5.9.3 to 6.0.2 in /app/gui #108

chore(deps): bump typescript from 5.9.3 to 6.0.2 in /app/gui

chore(deps): bump typescript from 5.9.3 to 6.0.2 in /app/gui #108

Workflow file for this run

name: 'Dependabot: Update bun.lockb'
on:
pull_request:
paths:
- "app/gui/package.json"
permissions:
contents: write
jobs:
update-bun-lockb:
name: "Update bun.lockb"
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app/gui
steps:
- uses: oven-sh/setup-bun@v1
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
- run: |
bun install
git add bun.lockb
git config --global user.name 'dependabot[bot]'
git config --global user.email 'dependabot[bot]@users.noreply.github.com'
git commit --amend --no-edit
git push --force