mirror of
https://github.com/C4illin/ConvertX.git
synced 2025-11-02 21:13:38 +00:00
Bumps [oven-sh/setup-bun](https://github.com/oven-sh/setup-bun) from 1 to 2. - [Release notes](https://github.com/oven-sh/setup-bun/releases) - [Commits](https://github.com/oven-sh/setup-bun/compare/v1...v2) --- updated-dependencies: - dependency-name: oven-sh/setup-bun dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
699 B
YAML
29 lines
699 B
YAML
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@v2
|
|
- 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
|