Skip to content

chore(deps): Bump @langchain/core from 0.3.39 to 0.3.40 #41

chore(deps): Bump @langchain/core from 0.3.39 to 0.3.40

chore(deps): Bump @langchain/core from 0.3.39 to 0.3.40 #41

name: Update pnpm-lock.yaml for Dependabot PRs
on:
pull_request_target:
types: [opened, synchronize]
paths:
- '**/package.json'
workflow_dispatch:
jobs:
update-lockfile:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
permissions:
contents: write
pull-requests: write
steps:
- name: Setup Environment
uses: sap/ai-sdk-js/.github/actions/setup@main
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_CLOUD_SDK_JS_ADMIN_WRITE_TOKEN }}
pnpm-install-args: --lockfile-only
- name: Commit and push if changed
run: |
if [[ -n "$(git status --porcelain)" ]]; then
git config --global user.email "cloud-sdk-js@github.com"
git config --global user.name "cloud-sdk-js"
git add pnpm-lock.yaml
git commit -m "chore: update pnpm-lock.yaml"
git push
fi