Skip to content

Commit 9192dfe

Browse files
angular-robotleonsenft
authored andcommitted
build: update cross-repo angular dependencies
See associated pull request for more information.
1 parent 1533242 commit 9192dfe

File tree

16 files changed

+100
-83
lines changed

16 files changed

+100
-83
lines changed

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

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29193,7 +29193,7 @@ var JSONStringify2 = (value, replacer, space) => {
2919329193
const convertedToCustomJSON = originalStringify2(
2919429194
value,
2919529195
(key, value2) => {
29196-
const isNoise = typeof value2 === "string" && Boolean(value2.match(noiseValue2));
29196+
const isNoise = typeof value2 === "string" && noiseValue2.test(value2);
2919729197
if (isNoise)
2919829198
return value2.toString() + "n";
2919929199
if (typeof value2 === "bigint")
@@ -29213,12 +29213,29 @@ var JSONStringify2 = (value, replacer, space) => {
2921329213
const denoisedJSON = processedJSON.replace(noiseStringify2, "$1$2$3");
2921429214
return denoisedJSON;
2921529215
};
29216-
var isContextSourceSupported2 = () => JSON.parse("1", (_, __, context3) => !!context3 && context3.source === "1");
29216+
var featureCache = /* @__PURE__ */ new Map();
29217+
var isContextSourceSupported2 = () => {
29218+
const parseFingerprint = JSON.parse.toString();
29219+
if (featureCache.has(parseFingerprint)) {
29220+
return featureCache.get(parseFingerprint);
29221+
}
29222+
try {
29223+
const result = JSON.parse(
29224+
"1",
29225+
(_, __, context3) => !!context3?.source && context3.source === "1"
29226+
);
29227+
featureCache.set(parseFingerprint, result);
29228+
return result;
29229+
} catch {
29230+
featureCache.set(parseFingerprint, false);
29231+
return false;
29232+
}
29233+
};
2921729234
var convertMarkedBigIntsReviver2 = (key, value, context3, userReviver) => {
29218-
const isCustomFormatBigInt = typeof value === "string" && value.match(customFormat2);
29235+
const isCustomFormatBigInt = typeof value === "string" && customFormat2.test(value);
2921929236
if (isCustomFormatBigInt)
2922029237
return BigInt(value.slice(0, -1));
29221-
const isNoiseValue = typeof value === "string" && value.match(noiseValue2);
29238+
const isNoiseValue = typeof value === "string" && noiseValue2.test(value);
2922229239
if (isNoiseValue)
2922329240
return value.slice(0, -1);
2922429241
if (typeof userReviver !== "function")
@@ -29250,7 +29267,7 @@ var JSONParse2 = (text, reviver) => {
2925029267
stringsOrLargeNumbers2,
2925129268
(text2, digits, fractional, exponential) => {
2925229269
const isString = text2[0] === '"';
29253-
const isNoise = isString && Boolean(text2.match(noiseValueWithQuotes2));
29270+
const isNoise = isString && noiseValueWithQuotes2.test(text2);
2925429271
if (isNoise)
2925529272
return text2.substring(0, text2.length - 1) + 'n"';
2925629273
const isFractionalOrExponential = fractional || exponential;
@@ -33553,7 +33570,7 @@ tmp/lib/tmp.js:
3355333570
*)
3355433571
*)
3355533572

33556-
@angular/ng-dev/bundles/chunk-PZCO3UAP.mjs:
33573+
@angular/ng-dev/bundles/chunk-GLEWX2LH.mjs:
3355733574
(*! Bundled license information:
3355833575

3355933576
@octokit/request-error/dist-src/index.js:

.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@ac95c7dca5916d639aec6c090acb60f62ce324ad
8+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
99
- name: Setup Saucelabs Variables
10-
uses: angular/dev-infra/github-actions/saucelabs@ac95c7dca5916d639aec6c090acb60f62ce324ad
10+
uses: angular/dev-infra/github-actions/saucelabs@b9bca459f29f61177a829e69089730415c95ccde
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,17 +21,17 @@ 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@ac95c7dca5916d639aec6c090acb60f62ce324ad
24+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
2525
- name: Setup Bazel
26-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
26+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
2727
- name: Setup Bazel RBE
28-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
28+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
2929
- name: Install node modules
3030
run: pnpm install --frozen-lockfile
3131
- name: Build adev
3232
# `snapshot-build` config is used to stamp the exact version with sha in the footer.
3333
run: pnpm bazel build //adev:build.production --config=snapshot-build
34-
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@ac95c7dca5916d639aec6c090acb60f62ce324ad
34+
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@b9bca459f29f61177a829e69089730415c95ccde
3535
with:
3636
workflow-artifact-name: 'adev-preview'
3737
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@ac95c7dca5916d639aec6c090acb60f62ce324ad
43+
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@b9bca459f29f61177a829e69089730415c95ccde
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
@@ -17,6 +17,6 @@ jobs:
1717
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818
with:
1919
persist-credentials: false
20-
- uses: angular/dev-infra/github-actions/branch-manager@ac95c7dca5916d639aec6c090acb60f62ce324ad
20+
- uses: angular/dev-infra/github-actions/branch-manager@b9bca459f29f61177a829e69089730415c95ccde
2121
with:
2222
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
- run: pnpm install --frozen-lockfile
4040

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

.github/workflows/ci.yml

Lines changed: 25 additions & 25 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@ac95c7dca5916d639aec6c090acb60f62ce324ad
24+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
2525
- name: Install node modules
2626
run: pnpm install --frozen-lockfile
2727
- name: Check code lint
@@ -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@ac95c7dca5916d639aec6c090acb60f62ce324ad
44+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
4545
with:
4646
disable-package-manager-cache: true
4747
- name: Setup Bazel
48-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
48+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
4949
- name: Setup Bazel RBE
50-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
50+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
5151
with:
5252
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
5353
- name: Install node modules
@@ -69,11 +69,11 @@ jobs:
6969
runs-on: ubuntu-latest
7070
steps:
7171
- name: Initialize environment
72-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ac95c7dca5916d639aec6c090acb60f62ce324ad
72+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
7373
- name: Setup Bazel
74-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
74+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
7575
- name: Setup Bazel Remote Caching
76-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
76+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
7777
with:
7878
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
7979
- name: Install node modules
@@ -85,11 +85,11 @@ jobs:
8585
runs-on: ubuntu-latest
8686
steps:
8787
- name: Initialize environment
88-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ac95c7dca5916d639aec6c090acb60f62ce324ad
88+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
8989
- name: Setup Bazel
90-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
90+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
9191
- name: Setup Bazel Remote Caching
92-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
92+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
9393
with:
9494
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
9595
- name: Install node modules
@@ -102,11 +102,11 @@ jobs:
102102
labels: ubuntu-latest
103103
steps:
104104
- name: Initialize environment
105-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ac95c7dca5916d639aec6c090acb60f62ce324ad
105+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
106106
- name: Setup Bazel
107-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
107+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
108108
- name: Setup Bazel RBE
109-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
109+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
110110
with:
111111
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
112112
- name: Install node modules
@@ -121,11 +121,11 @@ jobs:
121121
labels: ubuntu-latest
122122
steps:
123123
- name: Initialize environment
124-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ac95c7dca5916d639aec6c090acb60f62ce324ad
124+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
125125
- name: Setup Bazel
126-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
126+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
127127
- name: Setup Bazel RBE
128-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
128+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
129129
with:
130130
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
131131
- name: Install node modules
@@ -138,11 +138,11 @@ jobs:
138138
labels: ubuntu-latest
139139
steps:
140140
- name: Initialize environment
141-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ac95c7dca5916d639aec6c090acb60f62ce324ad
141+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
142142
- name: Setup Bazel
143-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
143+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
144144
- name: Setup Bazel RBE
145-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
145+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
146146
- name: Install node modules
147147
run: pnpm install --frozen-lockfile
148148
- run: echo "https://${{secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN}}:@github.com" > ${HOME}/.git_credentials
@@ -154,11 +154,11 @@ jobs:
154154
labels: ubuntu-latest
155155
steps:
156156
- name: Initialize environment
157-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ac95c7dca5916d639aec6c090acb60f62ce324ad
157+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
158158
- name: Setup Bazel
159-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
159+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
160160
- name: Setup Bazel RBE
161-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
161+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
162162
with:
163163
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
164164
- name: Install node modules
@@ -208,11 +208,11 @@ jobs:
208208
runs-on: ubuntu-latest-8core
209209
steps:
210210
- name: Initialize environment
211-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ac95c7dca5916d639aec6c090acb60f62ce324ad
211+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
212212
- name: Setup Bazel
213-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
213+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
214214
- name: Setup Bazel RBE
215-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
215+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
216216
- name: Install node modules
217217
run: pnpm install --frozen-lockfile
218218
- name: Build adev

.github/workflows/dev-infra.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515
if: github.event_name == 'pull_request_target'
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: angular/dev-infra/github-actions/labeling/pull-request@ac95c7dca5916d639aec6c090acb60f62ce324ad
18+
- uses: angular/dev-infra/github-actions/labeling/pull-request@b9bca459f29f61177a829e69089730415c95ccde
1919
with:
2020
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
2121
labels: '{"requires: TGP": ["packages/core/primitives/**/{*,.*}"]}'
2222
post_approval_changes:
2323
if: github.event_name == 'pull_request_target'
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: angular/dev-infra/github-actions/post-approval-changes@ac95c7dca5916d639aec6c090acb60f62ce324ad
26+
- uses: angular/dev-infra/github-actions/post-approval-changes@b9bca459f29f61177a829e69089730415c95ccde
2727
with:
2828
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
2929
issue_labels:
3030
if: github.event_name == 'issues'
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: angular/dev-infra/github-actions/labeling/issue@ac95c7dca5916d639aec6c090acb60f62ce324ad
33+
- uses: angular/dev-infra/github-actions/labeling/issue@b9bca459f29f61177a829e69089730415c95ccde
3434
with:
3535
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
3636
google-generative-ai-key: ${{ secrets.GOOGLE_GENERATIVE_AI_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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17-
- uses: angular/dev-infra/github-actions/google-internal-tests@ac95c7dca5916d639aec6c090acb60f62ce324ad
17+
- uses: angular/dev-infra/github-actions/google-internal-tests@b9bca459f29f61177a829e69089730415c95ccde
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,15 +13,15 @@ jobs:
1313
JOBS: 2
1414
steps:
1515
- name: Initialize environment
16-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@ac95c7dca5916d639aec6c090acb60f62ce324ad
16+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b9bca459f29f61177a829e69089730415c95ccde
1717
- name: Install node modules
1818
run: pnpm install --frozen-lockfile
1919
- name: Setup Bazel
20-
uses: angular/dev-infra/github-actions/bazel/setup@ac95c7dca5916d639aec6c090acb60f62ce324ad
20+
uses: angular/dev-infra/github-actions/bazel/setup@b9bca459f29f61177a829e69089730415c95ccde
2121
- name: Setup Bazel Remote Caching
22-
uses: angular/dev-infra/github-actions/bazel/configure-remote@ac95c7dca5916d639aec6c090acb60f62ce324ad
22+
uses: angular/dev-infra/github-actions/bazel/configure-remote@b9bca459f29f61177a829e69089730415c95ccde
2323
- name: Setup Saucelabs Variables
24-
uses: angular/dev-infra/github-actions/saucelabs@ac95c7dca5916d639aec6c090acb60f62ce324ad
24+
uses: angular/dev-infra/github-actions/saucelabs@b9bca459f29f61177a829e69089730415c95ccde
2525
- name: Set up Sauce Tunnel Daemon
2626
run: pnpm bazel run //tools/saucelabs-daemon/background-service -- $JOBS &
2727
env:

0 commit comments

Comments
 (0)