Skip to content

Commit 348756d

Browse files
authored
Merge branch 'master' into ruff-core-preview-2
2 parents 0ef54ad + e0aaacc commit 348756d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2833
-406
lines changed

.github/workflows/_compile_integration_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
timeout-minutes: 20
2828
name: 'Python ${{ inputs.python-version }}'
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131

3232
- name: '🐍 Set up Python ${{ inputs.python-version }} + UV'
3333
uses: "./.github/actions/uv_setup"

.github/workflows/_integration_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
name: 'Python ${{ inputs.python-version }}'
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232

3333
- name: '🐍 Set up Python ${{ inputs.python-version }} + UV'
3434
uses: "./.github/actions/uv_setup"

.github/workflows/_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
timeout-minutes: 20
3434
steps:
3535
- name: '📋 Checkout Code'
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: '🐍 Set up Python ${{ inputs.python-version }} + UV'
3939
uses: "./.github/actions/uv_setup"

.github/workflows/_release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
version: ${{ steps.check-version.outputs.version }}
4444

4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747

4848
- name: Set up Python + uv
4949
uses: "./.github/actions/uv_setup"
@@ -92,7 +92,7 @@ jobs:
9292
outputs:
9393
release-body: ${{ steps.generate-release-body.outputs.release-body }}
9494
steps:
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v5
9696
with:
9797
repository: langchain-ai/langchain
9898
path: langchain
@@ -199,7 +199,7 @@ jobs:
199199
runs-on: ubuntu-latest
200200
timeout-minutes: 20
201201
steps:
202-
- uses: actions/checkout@v4
202+
- uses: actions/checkout@v5
203203

204204
# We explicitly *don't* set up caching here. This ensures our tests are
205205
# maximally sensitive to catching breakage.
@@ -362,7 +362,7 @@ jobs:
362362
AZURE_OPENAI_LLM_DEPLOYMENT_NAME: ${{ secrets.AZURE_OPENAI_LLM_DEPLOYMENT_NAME }}
363363
AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT_NAME: ${{ secrets.AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT_NAME }}
364364
steps:
365-
- uses: actions/checkout@v4
365+
- uses: actions/checkout@v5
366366

367367
# We implement this conditional as Github Actions does not have good support
368368
# for conditionally needing steps. https://github.com/actions/runner/issues/491
@@ -440,7 +440,7 @@ jobs:
440440
working-directory: ${{ inputs.working-directory }}
441441

442442
steps:
443-
- uses: actions/checkout@v4
443+
- uses: actions/checkout@v5
444444

445445
- name: Set up Python + uv
446446
uses: "./.github/actions/uv_setup"
@@ -479,7 +479,7 @@ jobs:
479479
working-directory: ${{ inputs.working-directory }}
480480

481481
steps:
482-
- uses: actions/checkout@v4
482+
- uses: actions/checkout@v5
483483

484484
- name: Set up Python + uv
485485
uses: "./.github/actions/uv_setup"

.github/workflows/_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: 'Python ${{ inputs.python-version }}'
3333
steps:
3434
- name: '📋 Checkout Code'
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
- name: '🐍 Set up Python ${{ inputs.python-version }} + UV'
3838
uses: "./.github/actions/uv_setup"

.github/workflows/_test_doc_imports.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: '🔍 Check Doc Imports (Python ${{ inputs.python-version }})'
2222
steps:
2323
- name: '📋 Checkout Code'
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: '🐍 Set up Python ${{ inputs.python-version }} + UV'
2727
uses: "./.github/actions/uv_setup"

.github/workflows/_test_pydantic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: 'Pydantic ~=${{ inputs.pydantic-version }}'
3535
steps:
3636
- name: '📋 Checkout Code'
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
- name: '🐍 Set up Python ${{ inputs.python-version }} + UV'
4040
uses: "./.github/actions/uv_setup"

.github/workflows/_test_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
version: ${{ steps.check-version.outputs.version }}
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131

3232
- name: '🐍 Set up Python + UV'
3333
uses: "./.github/actions/uv_setup"
@@ -83,7 +83,7 @@ jobs:
8383
id-token: write
8484

8585
steps:
86-
- uses: actions/checkout@v4
86+
- uses: actions/checkout@v5
8787

8888
- uses: actions/download-artifact@v5
8989
with:

.github/workflows/api_doc_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
permissions:
1818
contents: read
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
path: langchain
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
repository: langchain-ai/langchain-api-docs-html
2626
path: langchain-api-docs-html

.github/workflows/check-broken-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository_owner == 'langchain-ai' || github.event_name != 'schedule'
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: '🟢 Setup Node.js 18.x'
1818
uses: actions/setup-node@v4
1919
with:

0 commit comments

Comments
 (0)