Skip to content

Commit e50a56b

Browse files
angular-robotthePunderWoman
authored andcommitted
build: update cross-repo angular dependencies (angular#60638)
See associated pull request for more information. PR Close angular#60638
1 parent 52dfce6 commit e50a56b

16 files changed

Lines changed: 82 additions & 75 deletions

.github/actions/deploy-docs-site/main.js

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19934,6 +19934,8 @@ var require_binary = __commonJS({
1993419934
}
1993519935
},
1993619936
stringify({ comment, type, value }, ctx, onComment, onChompKeep) {
19937+
if (!value)
19938+
return "";
1993719939
const buf = value;
1993819940
let str;
1993919941
if (typeof node_buffer.Buffer === "function") {
@@ -20438,7 +20440,7 @@ var require_timestamp = __commonJS({
2043820440
}
2043920441
return new Date(date);
2044020442
},
20441-
stringify: ({ value }) => value.toISOString().replace(/(T00:00:00)?\.000Z$/, "")
20443+
stringify: ({ value }) => (value == null ? void 0 : value.toISOString().replace(/(T00:00:00)?\.000Z$/, "")) ?? ""
2044220444
};
2044320445
exports.floatTime = floatTime;
2044420446
exports.intTime = intTime;
@@ -21655,8 +21657,8 @@ var require_compose_collection = __commonJS({
2165521657
ctx.schema.tags.push(Object.assign({}, kt, { default: false }));
2165621658
tag = kt;
2165721659
} else {
21658-
if (kt == null ? void 0 : kt.collection) {
21659-
onError(tagToken, "BAD_COLLECTION_TYPE", `${kt.tag} used for ${expType} collection, but expects ${kt.collection}`, true);
21660+
if (kt) {
21661+
onError(tagToken, "BAD_COLLECTION_TYPE", `${kt.tag} used for ${expType} collection, but expects ${kt.collection ?? "scalar"}`, true);
2166021662
} else {
2166121663
onError(tagToken, "TAG_RESOLVE_FAILED", `Unresolved tag: ${tagName}`, true);
2166221664
}
@@ -24089,7 +24091,17 @@ var require_parser = __commonJS({
2408924091
default: {
2409024092
const bv = this.startBlockValue(map);
2409124093
if (bv) {
24092-
if (atMapIndent && bv.type !== "block-seq") {
24094+
if (bv.type === "block-seq") {
24095+
if (!it.explicitKey && it.sep && !includesToken(it.sep, "newline")) {
24096+
yield* this.pop({
24097+
type: "error",
24098+
offset: this.offset,
24099+
message: "Unexpected block-seq-ind on same line with key",
24100+
source: this.source
24101+
});
24102+
return;
24103+
}
24104+
} else if (atMapIndent) {
2409324105
map.items.push({ start });
2409424106
}
2409524107
this.stack.push(bv);

.github/actions/saucelabs-legacy/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ runs:
55
using: 'composite'
66
steps:
77
- name: Setup Bazel
8-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
8+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
99
- name: Setup Saucelabs Variables
10-
uses: angular/dev-infra/github-actions/saucelabs@3281d9bc91f6ce814e541533577cc5ca472da7f0
10+
uses: angular/dev-infra/github-actions/saucelabs@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
1111
- name: Starting Saucelabs tunnel service
1212
shell: bash
1313
run: ./tools/saucelabs/sauce-service.sh run &

.github/workflows/adev-preview-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'adev: preview'))
2222
steps:
2323
- name: Initialize environment
24-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
24+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2525
- name: Setup Bazel
26-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
26+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2727
- name: Setup Bazel RBE
28-
uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
28+
uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2929
- name: Install node modules
3030
run: yarn install --frozen-lockfile
3131
- name: Build adev to ensure it continues to work
3232
run: yarn bazel build //adev:build --full_build_adev --config=release
33-
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@3281d9bc91f6ce814e541533577cc5ca472da7f0
33+
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
3434
with:
3535
workflow-artifact-name: 'adev-preview'
3636
pull-number: '${{github.event.pull_request.number}}'

.github/workflows/adev-preview-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
npx -y firebase-tools@latest target:clear --config adev/firebase.json --project ${{env.PREVIEW_PROJECT}} hosting angular-docs
4141
npx -y firebase-tools@latest target:apply --config adev/firebase.json --project ${{env.PREVIEW_PROJECT}} hosting angular-docs ${{env.PREVIEW_SITE}}
4242
43-
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@3281d9bc91f6ce814e541533577cc5ca472da7f0
43+
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
4444
with:
4545
github-token: '${{secrets.GITHUB_TOKEN}}'
4646
workflow-artifact-name: 'adev-preview'

.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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
with:
1818
persist-credentials: false
19-
- uses: angular/dev-infra/github-actions/branch-manager@3281d9bc91f6ce814e541533577cc5ca472da7f0
19+
- uses: angular/dev-infra/github-actions/branch-manager@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2020
with:
2121
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/benchmark-compare.yml

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

3939
- uses: ./.github/actions/yarn-install
4040

41-
- uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
41+
- uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
4242
with:
4343
bazelrc: ./.bazelrc.user
4444

.github/workflows/ci.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Initialize environment
24-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
24+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2525
with:
2626
cache-node-modules: true
2727
- name: Install node modules
@@ -41,13 +41,13 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Initialize environment
44-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
44+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
4545
with:
4646
cache-node-modules: true
4747
- name: Setup Bazel
48-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
48+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
4949
- name: Setup Bazel RBE
50-
uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
50+
uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
5151
with:
5252
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
5353
- name: Install node modules
@@ -61,13 +61,13 @@ jobs:
6161
runs-on: ubuntu-latest-4core
6262
steps:
6363
- name: Initialize environment
64-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
64+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
6565
with:
6666
cache-node-modules: true
6767
- name: Setup Bazel
68-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
68+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
6969
- name: Setup Bazel Remote Caching
70-
uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
70+
uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
7171
with:
7272
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
7373
- name: Install node modules
@@ -80,11 +80,11 @@ jobs:
8080
labels: ubuntu-latest-4core
8181
steps:
8282
- name: Initialize environment
83-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
83+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
8484
- name: Setup Bazel
85-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
85+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
8686
- name: Setup Bazel RBE
87-
uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
87+
uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
8888
with:
8989
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
9090
- name: Install node modules
@@ -101,13 +101,13 @@ jobs:
101101
labels: ubuntu-latest
102102
steps:
103103
- name: Initialize environment
104-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
104+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
105105
with:
106106
cache-node-modules: true
107107
- name: Setup Bazel
108-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
108+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
109109
- name: Setup Bazel RBE
110-
uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
110+
uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
111111
- name: Install node modules
112112
run: yarn install --frozen-lockfile
113113
- run: echo "https://${{secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN}}:@github.com" > ${HOME}/.git_credentials
@@ -119,17 +119,17 @@ jobs:
119119
labels: ubuntu-latest-4core
120120
steps:
121121
- name: Initialize environment
122-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
122+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
123123
with:
124124
cache-node-modules: true
125125
node-module-directories: |
126126
./node_modules
127127
./packages/zone.js/node_modules
128128
./packages/zone.js/test/typings/node_modules
129129
- name: Setup Bazel
130-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
130+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
131131
- name: Setup Bazel RBE
132-
uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
132+
uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
133133
with:
134134
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
135135
- name: Install node modules
@@ -168,7 +168,7 @@ jobs:
168168
SAUCE_TUNNEL_IDENTIFIER: angular-framework-${{ github.run_number }}
169169
steps:
170170
- name: Initialize environment
171-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
171+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
172172
with:
173173
cache-node-modules: true
174174
- name: Install node modules
@@ -181,11 +181,11 @@ jobs:
181181
runs-on: ubuntu-latest
182182
steps:
183183
- name: Initialize environment
184-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
184+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
185185
- name: Setup Bazel
186-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
186+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
187187
- name: Setup Bazel RBE
188-
uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
188+
uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
189189
- name: Install node modules
190190
run: yarn install --frozen-lockfile
191191
- name: Build adev to ensure it continues to work

.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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16-
- uses: angular/dev-infra/github-actions/commit-message-based-labels@3281d9bc91f6ce814e541533577cc5ca472da7f0
16+
- uses: angular/dev-infra/github-actions/commit-message-based-labels@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23-
- uses: angular/dev-infra/github-actions/post-approval-changes@3281d9bc91f6ce814e541533577cc5ca472da7f0
23+
- uses: angular/dev-infra/github-actions/post-approval-changes@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2424
with:
2525
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/google-internal-tests.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
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17-
- uses: angular/dev-infra/github-actions/google-internal-tests@3281d9bc91f6ce814e541533577cc5ca472da7f0
17+
- uses: angular/dev-infra/github-actions/google-internal-tests@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
1818
with:
1919
run-tests-guide-url: http://go/angular-g3sync-start
2020
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/manual.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
JOBS: 2
1414
steps:
1515
- name: Initialize environment
16-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@3281d9bc91f6ce814e541533577cc5ca472da7f0
16+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
1717
with:
1818
cache-node-modules: true
1919
- name: Install node modules
2020
run: yarn install --frozen-lockfile
2121
- name: Setup Bazel
22-
uses: angular/dev-infra/github-actions/bazel/setup@3281d9bc91f6ce814e541533577cc5ca472da7f0
22+
uses: angular/dev-infra/github-actions/bazel/setup@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2323
- name: Setup Bazel Remote Caching
24-
uses: angular/dev-infra/github-actions/bazel/configure-remote@3281d9bc91f6ce814e541533577cc5ca472da7f0
24+
uses: angular/dev-infra/github-actions/bazel/configure-remote@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2525
- name: Setup Saucelabs Variables
26-
uses: angular/dev-infra/github-actions/saucelabs@3281d9bc91f6ce814e541533577cc5ca472da7f0
26+
uses: angular/dev-infra/github-actions/saucelabs@a9c1c54ac3921fa2dcb3498712b2aa778a56dd7a
2727
- name: Set up Sauce Tunnel Daemon
2828
run: yarn bazel run //tools/saucelabs-daemon/background-service -- $JOBS &
2929
env:

0 commit comments

Comments
 (0)