Skip to content

Commit eef2d16

Browse files
angular-robotalan-agius4
authored andcommitted
build: update angular
1 parent 910f2e1 commit eef2d16

File tree

7 files changed

+302
-579
lines changed

7 files changed

+302
-579
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
19+
- uses: angular/dev-infra/github-actions/branch-manager@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
41+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b57414124cf00fcbf1ecb190bdeb1a1396361424
4242
- name: Setup ESLint Caching
4343
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
74+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b57414124cf00fcbf1ecb190bdeb1a1396361424
7575
- name: Setup Bazel
76-
uses: angular/dev-infra/github-actions/bazel/setup@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
76+
uses: angular/dev-infra/github-actions/bazel/setup@b57414124cf00fcbf1ecb190bdeb1a1396361424
7777
- name: Setup Bazel RBE
78-
uses: angular/dev-infra/github-actions/bazel/configure-remote@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
78+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
109+
uses: angular/dev-infra/github-actions/bazel/setup@b57414124cf00fcbf1ecb190bdeb1a1396361424
110110
- name: Setup Bazel RBE
111-
uses: angular/dev-infra/github-actions/bazel/configure-remote@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
111+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
138+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
144+
uses: angular/dev-infra/github-actions/bazel/setup@b57414124cf00fcbf1ecb190bdeb1a1396361424
145145
- name: Setup Bazel RBE
146-
uses: angular/dev-infra/github-actions/bazel/configure-remote@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
146+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
163+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
169+
uses: angular/dev-infra/github-actions/bazel/setup@b57414124cf00fcbf1ecb190bdeb1a1396361424
170170
- name: Setup Bazel RBE
171-
uses: angular/dev-infra/github-actions/bazel/configure-remote@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
171+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
16+
- uses: angular/dev-infra/github-actions/commit-message-based-labels@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
23+
- uses: angular/dev-infra/github-actions/post-approval-changes@b57414124cf00fcbf1ecb190bdeb1a1396361424
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@f245bb8cf1942e3fb147febae2dc31dcb84fd5fa
19+
- uses: angular/dev-infra/github-actions/feature-request@b57414124cf00fcbf1ecb190bdeb1a1396361424
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.4",
63-
"@angular/bazel": "https://github.com/angular/bazel-builds.git#a4bd2b87466281842fb110632ceadec1fe0124b6",
64-
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#b02604d09fbe2c3386ad61a73d822377bcbe366b",
63+
"@angular/bazel": "https://github.com/angular/bazel-builds.git#184fafd0b36bea2adf17b60592dccebe6a605699",
64+
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#846fcd1dc50a1e0a9ef5ba842ea588749921efd1",
6565
"@angular/cdk": "17.0.0-next.3",
6666
"@angular/common": "17.0.0-next.4",
6767
"@angular/compiler": "17.0.0-next.4",
@@ -70,7 +70,7 @@
7070
"@angular/forms": "17.0.0-next.4",
7171
"@angular/localize": "17.0.0-next.4",
7272
"@angular/material": "17.0.0-next.3",
73-
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#1c6c16f3fee62a5c82932825eb463afff32925b7",
73+
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#1eb7b574d63c1ba0a199e4272dee28de31c03084",
7474
"@angular/platform-browser": "17.0.0-next.4",
7575
"@angular/platform-browser-dynamic": "17.0.0-next.4",
7676
"@angular/platform-server": "17.0.0-next.4",

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#6ee6ad011fc95d7a62939d9cd1005e444939e379",
6-
"@angular/cdk": "github:angular/cdk-builds#cfa9c460c643221200c2a6f5b5d7dbf8cd085816",
7-
"@angular/common": "github:angular/common-builds#5191c10cfeba2a9a5f14cf1f00ac71824a27f143",
8-
"@angular/compiler": "github:angular/compiler-builds#4fad91e2575de82b71883c323c8f95a6e8ea61cc",
9-
"@angular/compiler-cli": "github:angular/compiler-cli-builds#7a9d82c0066e71eaf36af92e65c518a2e47c8919",
10-
"@angular/core": "github:angular/core-builds#ee9946d3577b1c411756035f16a3e4577e88c72e",
11-
"@angular/forms": "github:angular/forms-builds#4f94abeb473e4748aa1a60ad2a05bdcb0474c34a",
12-
"@angular/language-service": "github:angular/language-service-builds#c57877bd6744e0b9210b4293851a3e39b0843c53",
13-
"@angular/localize": "github:angular/localize-builds#85f11f341604190f11197b4d23fa3fe5839bcd7c",
14-
"@angular/material": "github:angular/material-builds#8cae0745cfa387b615b3d7413cd80d50b3bf2c3c",
15-
"@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#030c4324b0c080630352af940acd163a92c9e211",
16-
"@angular/platform-browser": "github:angular/platform-browser-builds#7bc1c08f9fbba8622de05292d3fc5727e7787796",
17-
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#480ecc6dfdd09ed9f016b68d75ffe153ce8f546f",
18-
"@angular/platform-server": "github:angular/platform-server-builds#bcc0d0782e4b489e1ce53bdc90f45707d8d0a5d0",
19-
"@angular/router": "github:angular/router-builds#50c51ef0143f1ecf013a993bfbc859a71dae040f",
20-
"@angular/service-worker": "github:angular/service-worker-builds#44162461af1e1caf38acfe029f2e78ed9c7290ca"
5+
"@angular/animations": "github:angular/animations-builds#4eac3f55e4d8e999f5ba8a9804eb537cd425f422",
6+
"@angular/cdk": "github:angular/cdk-builds#099cb0d65a833a7fbfcadd3f3c62a322571b32aa",
7+
"@angular/common": "github:angular/common-builds#09c3098706183d65abf17edcd7a48ae5d3b1708a",
8+
"@angular/compiler": "github:angular/compiler-builds#9828266700fcb52a8ad1f62f129ba67c3bdbc285",
9+
"@angular/compiler-cli": "github:angular/compiler-cli-builds#554d9dd33b2213cbc30c95e1a1f2505b6647dbd5",
10+
"@angular/core": "github:angular/core-builds#d9cbc034384ac69d9b980a56dcb50a235d25f8da",
11+
"@angular/forms": "github:angular/forms-builds#10163591600ff7aac1ffdd534eac4663eebbdf9e",
12+
"@angular/language-service": "github:angular/language-service-builds#fd42eee744b06be10a2d599e57642caf016fee40",
13+
"@angular/localize": "github:angular/localize-builds#7aebba49f197e0cccb5d0411327e2e5a9d15c954",
14+
"@angular/material": "github:angular/material-builds#b017bb9b8c9e1bc1a397bc25f65fdbdc3d447029",
15+
"@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#351a9d332da77fc6b7ed3dc1a61ca23dfb2890eb",
16+
"@angular/platform-browser": "github:angular/platform-browser-builds#0330d687ef39357f0459f533ec574c08f6dfc24e",
17+
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#20e6874b225103a162fa7199dc354545e6c5d58e",
18+
"@angular/platform-server": "github:angular/platform-server-builds#acf8a26826dc7ec793bcab28d90806387901725e",
19+
"@angular/router": "github:angular/router-builds#8e3be4c3bf68086e42ed4d155f43a193121ebd8a",
20+
"@angular/service-worker": "github:angular/service-worker-builds#c78aff574565fb8fcf7254011649bb3665ea0863"
2121
}
2222
}

0 commit comments

Comments
 (0)