Skip to content

Commit b59f124

Browse files
Merge pull request #504 from microsoft/dependabotchanges
chore: Dependabotchanges to Dev branch
2 parents 2cdea6b + 83b27a4 commit b59f124

File tree

11 files changed

+35
-35
lines changed

11 files changed

+35
-35
lines changed

.github/workflows/azure-dev.yml

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

2020
# Step 2: Validate the Azure template using microsoft/template-validation-action
2121
- name: Validate Azure Template
22-
uses: microsoft/template-validation-action@v0.3.5
22+
uses: microsoft/template-validation-action@v0.4.3
2323
id: validation
2424
env:
2525
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
WEBAPP_URL: ${{ steps.get_output.outputs.WEBAPP_URL }}
2727
steps:
2828
- name: Checkout Code
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030

3131
- name: Setup Azure CLI
3232
run: |

.github/workflows/docker-build-and-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323

2424
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v1
25+
uses: docker/setup-buildx-action@v3
2626

2727
- name: Log in to Azure Container Registry - External Registry
2828
if: ${{ github.ref_name == 'main' }}

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v3
27+
uses: actions/setup-node@v4
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
cache: 'npm'

.github/workflows/pylint.yml

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

1717
# Step 2: Set up Python environment
1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

.github/workflows/python-app.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
runs-on:
1818
- ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Set up Python 3.11
22-
uses: actions/setup-python@v3
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: "3.11"
2525
- name: Install dependencies
@@ -35,9 +35,9 @@ jobs:
3535
runs-on:
3636
- windows-latest
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
- name: Set up Python 3.11
40-
uses: actions/setup-python@v3
40+
uses: actions/setup-python@v5
4141
with:
4242
python-version: "3.11"
4343
- name: Install dependencies

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ jobs:
6666

6767
# Set up Node.js environment for Frontend
6868
- name: Set up Node.js
69-
uses: actions/setup-node@v3
69+
uses: actions/setup-node@v4
7070
with:
7171
node-version: '20' # Set the Node.js version
7272

7373
- name: Cache npm dependencies
74-
uses: actions/cache@v3
74+
uses: actions/cache@v4
7575
with:
7676
path: ~/.npm
7777
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

src/frontend/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@
8080
"ts-jest": "^29.2.5",
8181
"ts-node": "^10.9.2",
8282
"typescript": "^5.7.2",
83-
"vite": "^6.1.0"
83+
"vite": "^6.3.4"
8484
}
8585
}

src/requirements-dev.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
-r requirements.txt
22
azure-ai-documentintelligence==1.0.2
3-
Markdown==3.8
4-
requests==2.32.3
3+
Markdown==3.8.2
4+
requests==2.32.4
55
tqdm==4.67.1
66
tiktoken
7-
langchain==0.3.23
7+
langchain==0.3.26
88
bs4==0.0.2
9-
urllib3==2.4.0
10-
pytest==8.3.5
11-
pytest-asyncio==0.26.0
12-
PyMuPDF==1.25.5
9+
urllib3==2.5.0
10+
pytest==8.4.1
11+
pytest-asyncio==1.0.0
12+
PyMuPDF==1.26.1
1313
azure-storage-blob
1414
chardet
1515
azure-keyvault-secrets
1616
coverage
17-
flake8==7.2.0
17+
flake8==7.3.0
1818
black==25.1.0
1919
autoflake==2.3.1
2020
isort==6.0.1

0 commit comments

Comments
 (0)