Skip to content

Commit 187e4d7

Browse files
committed
chore: remove Azure login step from build-deploy workflow and update Angular dependencies
1 parent 057bdd8 commit 187e4d7

File tree

2 files changed

+21
-31
lines changed

2 files changed

+21
-31
lines changed

.github/workflows/build-deploy.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,6 @@ jobs:
6060
run: |
6161
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
6262
63-
- name: Login to Azure
64-
run: |
65-
az storage account show \
66-
--name ${{ secrets.AZURE_STORAGE_ACCOUNT_NAME }} \
67-
--query 'name' \
68-
--output tsv
69-
env:
70-
AZURE_STORAGE_ACCOUNT: ${{ secrets.AZURE_STORAGE_ACCOUNT_NAME }}
71-
AZURE_STORAGE_KEY: ${{ secrets.AZURE_STORAGE_ACCOUNT_KEY }}
72-
7363
- name: Enable static website hosting
7464
run: |
7565
az storage blob service-properties update \

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
"private": true,
1515
"dependencies": {
1616
"@acrodata/code-editor": "^0.5.1",
17-
"@angular/animations": "^20.3.9",
18-
"@angular/common": "^20.3.9",
19-
"@angular/compiler": "^20.3.9",
20-
"@angular/core": "^20.3.9",
21-
"@angular/forms": "^20.3.9",
22-
"@angular/platform-browser": "^20.3.9",
23-
"@angular/platform-browser-dynamic": "^20.3.9",
24-
"@angular/platform-server": "^20.3.9",
25-
"@angular/router": "^20.3.9",
26-
"@angular/ssr": "^20.3.8",
17+
"@angular/animations": "^20.3.10",
18+
"@angular/common": "^20.3.10",
19+
"@angular/compiler": "^20.3.10",
20+
"@angular/core": "^20.3.10",
21+
"@angular/forms": "^20.3.10",
22+
"@angular/platform-browser": "^20.3.10",
23+
"@angular/platform-browser-dynamic": "^20.3.10",
24+
"@angular/platform-server": "^20.3.10",
25+
"@angular/router": "^20.3.10",
26+
"@angular/ssr": "^20.3.9",
2727
"@codemirror/commands": "^6.10.0",
2828
"@codemirror/lang-css": "^6.3.1",
2929
"@codemirror/lang-javascript": "^6.2.4",
@@ -35,7 +35,7 @@
3535
"@codemirror/state": "^6.5.2",
3636
"@codemirror/view": "^6.38.6",
3737
"@lezer/highlight": "^1.2.3",
38-
"@ng-select/ng-select": "^20.6.1",
38+
"@ng-select/ng-select": "^20.7.0",
3939
"@stedi/prettier-plugin-jsonata": "^2.1.6",
4040
"codemirror": "^6.0.2",
4141
"express": "~5.1.0",
@@ -47,18 +47,18 @@
4747
"zone.js": "~0.15.1"
4848
},
4949
"devDependencies": {
50-
"@angular-eslint/builder": "20.5.0",
51-
"@angular-eslint/schematics": "20.5.0",
52-
"@angular-eslint/template-parser": "20.5.0",
53-
"@angular/build": "^20.3.8",
54-
"@angular/cli": "~20.3.8",
55-
"@angular/compiler-cli": "^20.3.9",
50+
"@angular-eslint/builder": "20.5.1",
51+
"@angular-eslint/schematics": "20.5.1",
52+
"@angular-eslint/template-parser": "20.5.1",
53+
"@angular/build": "^20.3.9",
54+
"@angular/cli": "~20.3.9",
55+
"@angular/compiler-cli": "^20.3.10",
5656
"@types/express": "~5.0.5",
5757
"@types/jasmine": "~5.1.12",
5858
"@types/js-yaml": "^4.0.9",
59-
"@types/node": "^24.9.2",
60-
"angular-eslint": "^20.5.0",
61-
"eslint": "^9.38.0",
59+
"@types/node": "^24.10.0",
60+
"angular-eslint": "^20.5.1",
61+
"eslint": "^9.39.1",
6262
"eslint-config-prettier": "^10.1.8",
6363
"eslint-plugin-prettier": "^5.5.4",
6464
"jasmine-core": "~5.12.1",
@@ -71,6 +71,6 @@
7171
"prettier-eslint": "^16.4.2",
7272
"style-loader": "^4.0.0",
7373
"typescript": "~5.9.3",
74-
"typescript-eslint": "^8.46.2"
74+
"typescript-eslint": "^8.46.3"
7575
}
7676
}

0 commit comments

Comments
 (0)