Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

update dependencies and removed logging #8

update dependencies and removed logging

update dependencies and removed logging #8

Workflow file for this run

# https://github.com/dependabot/dependabot-core/issues/6528#issuecomment-2013695799
name: 'Dependabot: Update bun.lockb'
on:
pull_request:
paths:
- "package.json"
permissions:
contents: write
jobs:
update-bun-lockb:
name: "Update bun.lockb"
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
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