Skip to content

Commit e9d00ff

Browse files
angular-robotdgp1130
authored andcommitted
build: update angular
1 parent ce687c1 commit e9d00ff

File tree

7 files changed

+52
-52
lines changed

7 files changed

+52
-52
lines changed

.github/workflows/assistant-to-the-branch-manager.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
1717
with:
1818
persist-credentials: false
19-
- uses: angular/dev-infra/github-actions/branch-manager@ad327ca5766ef5dbf071a37056cee034bee258cd
19+
- uses: angular/dev-infra/github-actions/branch-manager@01a73e850b84b6a6e24701298c73a043adb2163a
2020
with:
2121
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Initialize environment
41-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ad327ca5766ef5dbf071a37056cee034bee258cd
41+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@01a73e850b84b6a6e24701298c73a043adb2163a
4242
- name: Setup ESLint Caching
4343
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
4444
with:
@@ -71,11 +71,11 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- name: Initialize environment
74-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ad327ca5766ef5dbf071a37056cee034bee258cd
74+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@01a73e850b84b6a6e24701298c73a043adb2163a
7575
- name: Setup Bazel
76-
uses: angular/dev-infra/github-actions/bazel/setup@ad327ca5766ef5dbf071a37056cee034bee258cd
76+
uses: angular/dev-infra/github-actions/bazel/setup@01a73e850b84b6a6e24701298c73a043adb2163a
7777
- name: Setup Bazel RBE
78-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ad327ca5766ef5dbf071a37056cee034bee258cd
78+
uses: angular/dev-infra/github-actions/bazel/configure-remote@01a73e850b84b6a6e24701298c73a043adb2163a
7979
- name: Install node modules
8080
run: yarn install --frozen-lockfile
8181
- name: Build release targets
@@ -106,9 +106,9 @@ jobs:
106106
- name: Install node modules
107107
run: yarn install --frozen-lockfile
108108
- name: Setup Bazel
109-
uses: angular/dev-infra/github-actions/bazel/setup@ad327ca5766ef5dbf071a37056cee034bee258cd
109+
uses: angular/dev-infra/github-actions/bazel/setup@01a73e850b84b6a6e24701298c73a043adb2163a
110110
- name: Setup Bazel RBE
111-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ad327ca5766ef5dbf071a37056cee034bee258cd
111+
uses: angular/dev-infra/github-actions/bazel/configure-remote@01a73e850b84b6a6e24701298c73a043adb2163a
112112
- if: matrix.version == env.defaultVersion
113113
name: Run tests for default node version
114114
run: yarn bazel test --test_tag_filters=-node18,-node16-broken //packages/...
@@ -135,15 +135,15 @@ jobs:
135135
runs-on: ${{ matrix.os }}
136136
steps:
137137
- name: Initialize environment
138-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ad327ca5766ef5dbf071a37056cee034bee258cd
138+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@01a73e850b84b6a6e24701298c73a043adb2163a
139139
with:
140140
fetch-depth: 1
141141
- name: Install node modules
142142
run: yarn install --frozen-lockfile
143143
- name: Setup Bazel
144-
uses: angular/dev-infra/github-actions/bazel/setup@ad327ca5766ef5dbf071a37056cee034bee258cd
144+
uses: angular/dev-infra/github-actions/bazel/setup@01a73e850b84b6a6e24701298c73a043adb2163a
145145
- name: Setup Bazel RBE
146-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ad327ca5766ef5dbf071a37056cee034bee258cd
146+
uses: angular/dev-infra/github-actions/bazel/configure-remote@01a73e850b84b6a6e24701298c73a043adb2163a
147147
- name: Run CLI E2E tests
148148
run: yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
149149

@@ -160,14 +160,14 @@ jobs:
160160
runs-on: ${{ matrix.os }}
161161
steps:
162162
- name: Initialize environment
163-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ad327ca5766ef5dbf071a37056cee034bee258cd
163+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@01a73e850b84b6a6e24701298c73a043adb2163a
164164
with:
165165
fetch-depth: 1
166166
- name: Install node modules
167167
run: yarn install --frozen-lockfile
168168
- name: Setup Bazel
169-
uses: angular/dev-infra/github-actions/bazel/setup@ad327ca5766ef5dbf071a37056cee034bee258cd
169+
uses: angular/dev-infra/github-actions/bazel/setup@01a73e850b84b6a6e24701298c73a043adb2163a
170170
- name: Setup Bazel RBE
171-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ad327ca5766ef5dbf071a37056cee034bee258cd
171+
uses: angular/dev-infra/github-actions/bazel/configure-remote@01a73e850b84b6a6e24701298c73a043adb2163a
172172
- name: Run CLI E2E tests
173173
run: yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.snapshots.${{ matrix.subset }}_node${{ matrix.node }}

.github/workflows/dev-infra.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
16-
- uses: angular/dev-infra/github-actions/commit-message-based-labels@ad327ca5766ef5dbf071a37056cee034bee258cd
16+
- uses: angular/dev-infra/github-actions/commit-message-based-labels@01a73e850b84b6a6e24701298c73a043adb2163a
1717
with:
1818
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
1919
post_approval_changes:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
23-
- uses: angular/dev-infra/github-actions/post-approval-changes@ad327ca5766ef5dbf071a37056cee034bee258cd
23+
- uses: angular/dev-infra/github-actions/post-approval-changes@01a73e850b84b6a6e24701298c73a043adb2163a
2424
with:
2525
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/feature-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
if: github.repository == 'angular/angular-cli'
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: angular/dev-infra/github-actions/feature-request@ad327ca5766ef5dbf071a37056cee034bee258cd
19+
- uses: angular/dev-infra/github-actions/feature-request@01a73e850b84b6a6e24701298c73a043adb2163a
2020
with:
2121
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
"devDependencies": {
6161
"@ampproject/remapping": "2.2.1",
6262
"@angular/animations": "17.0.0-next.2",
63-
"@angular/bazel": "https://github.com/angular/bazel-builds.git#82c9c2df8458e3b8e7a813adf1fcd893fea367f3",
64-
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#2239c41551d95e89b2c666e828ef620c62997ef8",
63+
"@angular/bazel": "https://github.com/angular/bazel-builds.git#91091a7265b992f7198771a990dcd02f6d76d349",
64+
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#148a2664e8323239f6535aa3d4cf5ef765891a7d",
6565
"@angular/cdk": "17.0.0-next.1",
6666
"@angular/common": "17.0.0-next.2",
6767
"@angular/compiler": "17.0.0-next.2",
@@ -70,7 +70,7 @@
7070
"@angular/forms": "17.0.0-next.2",
7171
"@angular/localize": "17.0.0-next.2",
7272
"@angular/material": "17.0.0-next.1",
73-
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#1a5c118150d1729a4a285e70ae9e5143b6eb91c7",
73+
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#7a8480bb03fff8c139db4586286c439cd7366493",
7474
"@angular/platform-browser": "17.0.0-next.2",
7575
"@angular/platform-browser-dynamic": "17.0.0-next.2",
7676
"@angular/platform-server": "17.0.0-next.2",

tests/legacy-cli/e2e/ng-snapshot/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
"description": "snapshot versions of Angular for e2e testing",
33
"private": true,
44
"dependencies": {
5-
"@angular/animations": "github:angular/animations-builds#e1803937ad6310148d72020c981f77d29d15f58d",
6-
"@angular/cdk": "github:angular/cdk-builds#bcc7377277e1a7bb94165e40903eefa441a5bd26",
7-
"@angular/common": "github:angular/common-builds#c0ec32611ad01abcb184fc1081c78b4d3f8bff8a",
8-
"@angular/compiler": "github:angular/compiler-builds#f686df91cde8c40292ffcf514aabd8d8bc96b420",
9-
"@angular/compiler-cli": "github:angular/compiler-cli-builds#d5d852debf3034302695ccec5abb5ed41ab09384",
10-
"@angular/core": "github:angular/core-builds#346e41d00ae6383fbba9a5777d307c2ce688cf63",
11-
"@angular/forms": "github:angular/forms-builds#4254002730e4d58f09ccb3e83130bf6520e25ce4",
12-
"@angular/language-service": "github:angular/language-service-builds#f84e5c347427299f3a7c385740c8adb98b738b73",
13-
"@angular/localize": "github:angular/localize-builds#b59e68e70575ab71828391bc927cf67c8cbd9e34",
14-
"@angular/material": "github:angular/material-builds#4fe8c7bfdd01c3c3e10ae436ce34196511312bc5",
15-
"@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#a3595c76758e7d747421bd53d62991b431cc2c62",
16-
"@angular/platform-browser": "github:angular/platform-browser-builds#9722d94818b775f65a5989d0422112c4bba26d72",
17-
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#2e3e969441ca7571f21e6cbcd6ea33bdc9848e26",
18-
"@angular/platform-server": "github:angular/platform-server-builds#334c5b83c7805cd351b0ac95fef33974519c013a",
19-
"@angular/router": "github:angular/router-builds#9d6987bb108e55c1bc217ed19c24150e11d48db7",
20-
"@angular/service-worker": "github:angular/service-worker-builds#fa6cdb144df7c0b2ddeb23198c23081e80110c70"
5+
"@angular/animations": "github:angular/animations-builds#becd70d6101464106e2aa6af8846d4b2ba0f1aa1",
6+
"@angular/cdk": "github:angular/cdk-builds#e3be8a0b258911f6a4969b4f81f41143397300c8",
7+
"@angular/common": "github:angular/common-builds#56bfe942e99925c3428abdd1016494ef8e41ebb1",
8+
"@angular/compiler": "github:angular/compiler-builds#fb4f83fa01b6619741a5556cfe6bc5190bd80c7c",
9+
"@angular/compiler-cli": "github:angular/compiler-cli-builds#d0ea931b5a28b32766b3f7ae789d014a99a7ff07",
10+
"@angular/core": "github:angular/core-builds#69bad67ee6e75ba8d2e2c7dbefedba3d08bb6a62",
11+
"@angular/forms": "github:angular/forms-builds#6833e3cba1713a23c7dbf4a9805a909959e96f2b",
12+
"@angular/language-service": "github:angular/language-service-builds#b822383db9e6fcf6876e3925f8838dcff15b0a1f",
13+
"@angular/localize": "github:angular/localize-builds#98b1c0023476073bf726b4bcf0f2171c8d50a1cc",
14+
"@angular/material": "github:angular/material-builds#34718d30b6b1b55f30bb76b2459fa1e619bc1a43",
15+
"@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#6b21729a8b0bb97fc4cc5d93f6210199e25c16bd",
16+
"@angular/platform-browser": "github:angular/platform-browser-builds#e99f28336ceb1d54edead1abb3e966b37858a84e",
17+
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#be756518722a50afb71adbd67e23d505693967d3",
18+
"@angular/platform-server": "github:angular/platform-server-builds#6fb3bb7c8b9fde2112dedd3e3d93410ccb55500a",
19+
"@angular/router": "github:angular/router-builds#71eb3f38e885c31c3678d54f32880b3bdc4c367d",
20+
"@angular/service-worker": "github:angular/service-worker-builds#7c983b2e20a992677e2f3694630c3ed47c49a056"
2121
}
2222
}

yarn.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@
121121
dependencies:
122122
tslib "^2.3.0"
123123

124-
"@angular/bazel@https://github.com/angular/bazel-builds.git#82c9c2df8458e3b8e7a813adf1fcd893fea367f3":
125-
version "17.0.0-next.2+sha-eab9216"
126-
uid "82c9c2df8458e3b8e7a813adf1fcd893fea367f3"
127-
resolved "https://github.com/angular/bazel-builds.git#82c9c2df8458e3b8e7a813adf1fcd893fea367f3"
124+
"@angular/bazel@https://github.com/angular/bazel-builds.git#91091a7265b992f7198771a990dcd02f6d76d349":
125+
version "17.0.0-next.2+sha-970d68f"
126+
uid "91091a7265b992f7198771a990dcd02f6d76d349"
127+
resolved "https://github.com/angular/bazel-builds.git#91091a7265b992f7198771a990dcd02f6d76d349"
128128
dependencies:
129129
"@microsoft/api-extractor" "^7.24.2"
130130
magic-string "^0.30.0"
@@ -138,10 +138,10 @@
138138
"@angular/core" "^13.0.0 || ^14.0.0-0"
139139
reflect-metadata "^0.1.13"
140140

141-
"@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#2239c41551d95e89b2c666e828ef620c62997ef8":
142-
version "0.0.0-ad327ca5766ef5dbf071a37056cee034bee258cd"
143-
uid "2239c41551d95e89b2c666e828ef620c62997ef8"
144-
resolved "https://github.com/angular/dev-infra-private-build-tooling-builds.git#2239c41551d95e89b2c666e828ef620c62997ef8"
141+
"@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#148a2664e8323239f6535aa3d4cf5ef765891a7d":
142+
version "0.0.0-9a54ceecfcd399051e18cd2dbdd6c9fc893f5dc4"
143+
uid "148a2664e8323239f6535aa3d4cf5ef765891a7d"
144+
resolved "https://github.com/angular/dev-infra-private-build-tooling-builds.git#148a2664e8323239f6535aa3d4cf5ef765891a7d"
145145
dependencies:
146146
"@angular-devkit/build-angular" "16.2.0-rc.1"
147147
"@angular/benchpress" "0.3.0"
@@ -168,7 +168,7 @@
168168
clang-format "1.8.0"
169169
prettier "3.0.3"
170170
protractor "^7.0.0"
171-
selenium-webdriver "4.11.1"
171+
selenium-webdriver "4.12.0"
172172
send "^0.18.0"
173173
source-map "^0.7.4"
174174
tmp "^0.2.1"
@@ -299,10 +299,10 @@
299299
"@material/typography" "15.0.0-canary.bc9ae6c9c.0"
300300
tslib "^2.3.0"
301301

302-
"@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#1a5c118150d1729a4a285e70ae9e5143b6eb91c7":
303-
version "0.0.0-ad327ca5766ef5dbf071a37056cee034bee258cd"
304-
uid "1a5c118150d1729a4a285e70ae9e5143b6eb91c7"
305-
resolved "https://github.com/angular/dev-infra-private-ng-dev-builds.git#1a5c118150d1729a4a285e70ae9e5143b6eb91c7"
302+
"@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#7a8480bb03fff8c139db4586286c439cd7366493":
303+
version "0.0.0-9a54ceecfcd399051e18cd2dbdd6c9fc893f5dc4"
304+
uid "7a8480bb03fff8c139db4586286c439cd7366493"
305+
resolved "https://github.com/angular/dev-infra-private-ng-dev-builds.git#7a8480bb03fff8c139db4586286c439cd7366493"
306306
dependencies:
307307
"@yarnpkg/lockfile" "^1.1.0"
308308
typescript "~4.9.0"
@@ -11348,10 +11348,10 @@ selenium-webdriver@3.6.0, selenium-webdriver@^3.0.1:
1134811348
tmp "0.0.30"
1134911349
xml2js "^0.4.17"
1135011350

11351-
selenium-webdriver@4.11.1:
11352-
version "4.11.1"
11353-
resolved "https://registry.yarnpkg.com/selenium-webdriver/-/selenium-webdriver-4.11.1.tgz#6a84f68d06199d075e6c2a5448bf08f4249b98c8"
11354-
integrity sha512-bvrnr3UZlLScErOmn8gV6cqc+1PYDHn0575CxUR2U14fMWt7OKxSy0lAThhZq4sq4d1HqP8ebz11oiHSlAQ2WA==
11351+
selenium-webdriver@4.12.0:
11352+
version "4.12.0"
11353+
resolved "https://registry.yarnpkg.com/selenium-webdriver/-/selenium-webdriver-4.12.0.tgz#a8dc8ecf129a2414c2ace6e429aba84722a950a5"
11354+
integrity sha512-zvPzmTsky6WfO6+BGMj2mCJsw7qKnfQONur2b+pGn8jeTiC+WAUOthZOnaK+HkX5wiU6L4uoMF+JIcOVstp25A==
1135511355
dependencies:
1135611356
jszip "^3.10.1"
1135711357
tmp "^0.2.1"

0 commit comments

Comments
 (0)