Skip to content

Commit 2f2cbe0

Browse files
Merge pull request #215 from microsoft/dev
fix: Merge latest changes into main branch
2 parents dd152bd + 835f606 commit 2f2cbe0

File tree

3 files changed

+31
-46
lines changed

3 files changed

+31
-46
lines changed

.github/workflows/deploy.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,15 @@ jobs:
137137
capacity=${{ env.GPT_MIN_CAPACITY }} \
138138
imageVersion="${IMAGE_TAG}" \
139139
createdBy="Pipeline"
140+
- name: Assign Contributor role to Service Principal
141+
if: always()
142+
run: |
143+
echo "Assigning Contributor role to SPN for RG: ${{ env.RESOURCE_GROUP_NAME }}"
144+
az role assignment create \
145+
--assignee ${{ secrets.AZURE_CLIENT_ID }} \
146+
--role "Contributor" \
147+
--scope /subscriptions/${{ secrets.AZURE_SUBSCRIPTION_ID }}/resourceGroups/${{ env.RESOURCE_GROUP_NAME }}
148+
140149
141150
- name: Get Deployment Output and extract Values
142151
id: get_output
@@ -403,4 +412,4 @@ jobs:
403412
if: always()
404413
run: |
405414
az logout
406-
echo "Logged out from Azure."
415+
echo "Logged out from Azure."

src/frontend/package-lock.json

Lines changed: 19 additions & 43 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@tailwindcss/vite": "^4.0.0",
2020
"@types/react-router-dom": "^5.3.3",
2121
"autoprefixer": "^10.4.20",
22-
"axios": "^1.7.9",
22+
"axios": "^1.12.2",
2323
"class-variance-authority": "^0.7.1",
2424
"clsx": "^2.1.1",
2525
"lucide-react": "^0.471.1",
@@ -29,7 +29,7 @@
2929
"react-dropzone": "^14.3.5",
3030
"react-icons": "^5.5.0",
3131
"react-redux": "^9.1.2",
32-
"react-router-dom": "^7.1.3",
32+
"react-router-dom": "^7.5.2",
3333
"react-syntax-highlighter": "^15.6.1",
3434
"sql-formatter": "^15.4.11",
3535
"tailwind-merge": "^2.6.0",

0 commit comments

Comments
 (0)