Skip to content

chore(deps): update dependency @sanity/pkg-utils to ^7.0.1 (#959) #487

chore(deps): update dependency @sanity/pkg-utils to ^7.0.1 (#959)

chore(deps): update dependency @sanity/pkg-utils to ^7.0.1 (#959) #487

Workflow file for this run

name: Maintain bun.lockb
on:
push:
branches: [main]
paths:
- 'package-lock.json'
workflow_dispatch:
permissions:
contents: read
jobs:
run:
name: bun install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2
with:
bun-version: latest
- run: bun install
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7
with:
body: I ran `bun install` 🧑‍💻
branch: actions/maintain-bun-lock
commit-message: 'chore(bun): update bun lockfile'
labels: 🤖 bot
sign-commits: true
title: 'chore(bun): update bun lockfile'
token: ${{ steps.app-token.outputs.token }}