Skip to content

Commit 4264a9a

Browse files
Merge branch 'main' into oracle-upstream-compat-features
2 parents 526a4ab + c48fcbe commit 4264a9a

107 files changed

Lines changed: 1468 additions & 94 deletions

File tree

Some content is hidden

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

.github/labeler.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,11 @@ integration:meta-llama:
238238
- any-glob-to-any-file: "integrations/meta_llama/**/*"
239239
- any-glob-to-any-file: ".github/workflows/meta_llama.yml"
240240

241+
integration:microsoft-sharepoint:
242+
- changed-files:
243+
- any-glob-to-any-file: "integrations/microsoft_sharepoint/**/*"
244+
- any-glob-to-any-file: ".github/workflows/microsoft_sharepoint.yml"
245+
241246
integration:mistral:
242247
- changed-files:
243248
- any-glob-to-any-file: "integrations/mistral/**/*"

.github/workflows/CI_check_api_ref.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test-api-reference-build:
1111
runs-on: ubuntu-slim
1212
steps:
13-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
13+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1414
with:
1515
fetch-depth: 0
1616

.github/workflows/CI_check_integration_format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-slim
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
10+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1111

1212
- name: Ensure no hyphens
1313
run: |

.github/workflows/CI_comment_fork_prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.event.pull_request.head.repo.fork == true
1717
runs-on: ubuntu-slim
1818
steps:
19-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
19+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2020
with:
2121
ref: ${{ github.event.pull_request.base.sha }}
2222

.github/workflows/CI_coverage_comment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ on:
4646
- "Test / mcp"
4747
- "Test / mem0"
4848
- "Test / meta_llama"
49+
- "Test / microsoft_sharepoint"
4950
- "Test / mistral"
5051
- "Test / mongodb_atlas"
5152
- "Test / nvidia"

.github/workflows/CI_docstring_labeler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout base commit
14-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
14+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1515
with:
1616
ref: ${{ github.base_ref }}
1717

@@ -33,7 +33,7 @@ jobs:
3333
echo "checksum=$CHECKSUM" >> "$GITHUB_OUTPUT"
3434
3535
- name: Checkout HEAD commit
36-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
36+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3737
with:
3838
ref: ${{ github.event.pull_request.head.ref }}
3939
# This must be set to correctly checkout a fork

.github/workflows/CI_docusaurus_sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout this repo
27-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
27+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2828

2929
- name: Set up Python
3030
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
@@ -68,7 +68,7 @@ jobs:
6868

6969
steps:
7070
- name: Checkout Haystack repo
71-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
71+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
7272
with:
7373
repository: deepset-ai/haystack
7474
ref: main

.github/workflows/CI_license_compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout the code
37-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
37+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3838

3939
- name: Setup Python
4040
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0

.github/workflows/CI_pypi_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
30+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3131
with:
3232
token: ${{ secrets.HAYSTACK_BOT_TOKEN }}
3333
fetch-depth: 0

.github/workflows/CI_workflows_linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-slim
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
13+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1414

1515
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
1616
with:

0 commit comments

Comments
 (0)