mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
Diff viewer for langgraph v1 alpha releases --------- Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: William FH <13333726+hinthornw@users.noreply.github.com> Co-authored-by: Mason Daugherty <github@mdrxy.com> Co-authored-by: Mason Daugherty <mason@langchain.dev>
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
name: UV Lock Upgrade
|
|
|
|
on:
|
|
schedule:
|
|
# run at midnight every Sunday
|
|
- cron: '0 0 * * 0'
|
|
# allow manual triggering
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
upgrade-dependencies:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Set up uv
|
|
uses: astral-sh/setup-uv@v7
|
|
with:
|
|
# use minimum supported Python version
|
|
python-version: "3.10"
|
|
enable-cache: true
|
|
cache-suffix: "uv-lock-upgrade"
|
|
|
|
- name: Run uv lock --upgrade in all Python packages
|
|
run: make lock-upgrade
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: "chore(deps): upgrade dependencies with `uv lock --upgrade`"
|
|
title: "chore(deps): upgrade dependencies with `uv lock --upgrade`"
|
|
body: |
|
|
This PR updates the dependencies in all Python packages using `uv lock --upgrade`.
|
|
|
|
This is an automated PR created by the UV Lock Upgrade workflow.
|
|
branch: deps/uv-lock-upgrade
|
|
delete-branch: true
|
|
labels: |
|
|
dependencies
|