Skip to content

fix(deps): update dependency @sanity/mutate to ^0.10.0 (#7451) #651

fix(deps): update dependency @sanity/mutate to ^0.10.0 (#7451)

fix(deps): update dependency @sanity/mutate to ^0.10.0 (#7451) #651

---
name: Dedupe lockfile
on:
push:
branches: [next]
paths:
- "pnpm-lock.yaml"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
permissions:
contents: read
jobs:
run:
name: Can pnpm-lock.yaml be deduped? 🤔
runs-on: ubuntu-latest
# workflow_dispatch always lets you select the branch ref, even though in this case we only ever want to run the action on `main` thus we need an if check
if: ${{ github.ref_name == 'next' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
v1-${{ runner.os }}-pnpm-store-${{ env.cache-name }}-
v1-${{ runner.os }}-pnpm-store-
v1-${{ runner.os }}-
- name: Install project dependencies
run: pnpm install --config.ignore-scripts=true
- run: pnpm dedupe --config.ignore-scripts=true
- 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@8867c4aba1b742c39f8d0ba35429c2dfa4b6cb20 # v7
with:
body: I ran `pnpm dedupe` 🧑‍💻
branch: actions/dedupe-if-needed
commit-message: "chore(deps): dedupe pnpm-lock.yaml"
labels: 🤖 bot
sign-commits: true
title: "chore(deps): dedupe pnpm-lock.yaml"
token: ${{ steps.app-token.outputs.token }}