Skip to content

chore(deps): bump eslint-plugin-vue from 9.29.0 to 9.29.1 in /frontend #702

chore(deps): bump eslint-plugin-vue from 9.29.0 to 9.29.1 in /frontend

chore(deps): bump eslint-plugin-vue from 9.29.0 to 9.29.1 in /frontend #702

name: 'Dependabot: bun workaround'
on:
pull_request_target:
paths:
- "frontend/package.json"
jobs:
update-bun-lockb:
name: "Update bun.lockb"
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: oven-sh/setup-bun@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ secrets.DEPENDABOT_AUTO_REBASE_TOKEN }}
- name: "Update bun.lockb"
run: |
cd frontend
bun install
- name: "Commit and push changes"
run: |
git add frontend/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