Skip to content

Commit 111fac3

Browse files
Merge pull request #661 from microsoft/dev
chore: dev to main
2 parents ab815eb + 0126ce8 commit 111fac3

Some content is hidden

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

54 files changed

+2586
-4229
lines changed

.github/workflows/Scheduled-Dependabot-PRs-Auto-Merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Install GitHub CLI
4242
run: |

.github/workflows/azure-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
steps:
1616
# Step 1: Checkout the code from your repository
1717
- name: Checkout code
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
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.4.3
22+
uses: microsoft/template-validation-action@v0.4.4
2323
id: validation
2424
env:
2525
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

2323
# For PR : Get only changed markdown files
2424
- name: Get changed markdown files (PR only)
2525
id: changed-markdown-files
2626
if: github.event_name == 'pull_request'
27-
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v46
27+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v46
2828
with:
2929
files: |
3030
**/*.md
@@ -34,7 +34,7 @@ jobs:
3434
- name: Check Broken Links in Changed Markdown Files
3535
id: lychee-check-pr
3636
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
37-
uses: lycheeverse/lychee-action@v2.6.1
37+
uses: lycheeverse/lychee-action@v2.7.0
3838
with:
3939
args: >
4040
--verbose --no-progress --exclude ^https?://
@@ -47,7 +47,7 @@ jobs:
4747
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
4848
id: lychee-check-manual
4949
if: github.event_name == 'workflow_dispatch'
50-
uses: lycheeverse/lychee-action@v2.6.1
50+
uses: lycheeverse/lychee-action@v2.7.0
5151
with:
5252
args: >
5353
--verbose --no-progress --exclude ^https?://

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
ref: ${{ github.event.workflow_run.head_sha }}
2020

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
WEBAPP_URL: ${{ steps.get_output.outputs.WEBAPP_URL }}
3333
steps:
3434
- name: Checkout Code
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636

3737
- name: Login to Azure
3838
run: |

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

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

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Set up Docker Buildx
4242
uses: docker/setup-buildx-action@v3

.github/workflows/job-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ on:
8787
value: ${{ jobs.azure-setup.outputs.IMAGE_TAG }}
8888
QUOTA_FAILED:
8989
description: "Quota Check Failed Flag"
90-
value: ${{ jobs.azure-setup.outputs.QUOTA_FAILED }}
90+
value: ${{ jobs.azure-setup.outputs.QUOTA_FAILED || 'false' }}
9191

9292
env:
9393
GPT_MIN_CAPACITY: 150

.github/workflows/node.js.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Build Frontend
55

66
on:
77
push:
8-
branches: [ "main" ]
8+
branches: [ "main", "dev" ]
99
paths:
1010
- 'src/frontend/**/*.ts'
1111
- 'src/frontend/**/*.tsx'
@@ -17,7 +17,7 @@ on:
1717
- 'src/frontend/**/*.html'
1818
- '.github/workflows/node.js.yml'
1919
pull_request:
20-
branches: [ "main" ]
20+
branches: [ "main", "dev" ]
2121
paths:
2222
- 'src/frontend/**/*.ts'
2323
- 'src/frontend/**/*.tsx'
@@ -37,18 +37,17 @@ jobs:
3737
working-directory: src/frontend
3838
strategy:
3939
matrix:
40-
node-version: [18.x, 21.x]
40+
node-version: [20.x, 22.x]
4141
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
4242

4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
- name: Use Node.js ${{ matrix.node-version }}
46-
uses: actions/setup-node@v5
46+
uses: actions/setup-node@v6
4747
with:
4848
node-version: ${{ matrix.node-version }}
4949
cache: 'npm'
5050
cache-dependency-path: 'src/frontend/package-lock.json'
5151
- run: npm ci
52-
- run: npm install --save-dev jest-environment-jsdom # Install missing package
5352
- run: NODE_OPTIONS=--max_old_space_size=8192 npm run build --if-present
5453
- run: npm run test --if-present

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# Step 1: Checkout code
1919
- name: Checkout code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
# Step 2: Set up Python environment
2323
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/python-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on:
2828
- ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- name: Set up Python 3.11
3232
uses: actions/setup-python@v6
3333
with:
@@ -45,7 +45,7 @@ jobs:
4545
runs-on:
4646
- windows-latest
4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949
- name: Set up Python 3.11
5050
uses: actions/setup-python@v6
5151
with:

0 commit comments

Comments
 (0)