Skip to content

Commit 8cd1b43

Browse files
angular-robotAndrewKushnir
authored andcommitted
build: update cross-repo angular dependencies (angular#64282)
See associated pull request for more information. PR Close angular#64282
1 parent 68df976 commit 8cd1b43

File tree

49 files changed

+3076
-3025
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3076
-3025
lines changed

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

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15779,6 +15779,9 @@ var require_identifiers = __commonJS({
1577915779
"use strict";
1578015780
var numeric = /^[0-9]+$/;
1578115781
var compareIdentifiers = (a7, b3) => {
15782+
if (typeof a7 === "number" && typeof b3 === "number") {
15783+
return a7 === b3 ? 0 : a7 < b3 ? -1 : 1;
15784+
}
1578215785
const anum = numeric.test(a7);
1578315786
const bnum = numeric.test(b3);
1578415787
if (anum && bnum) {
@@ -15885,7 +15888,25 @@ var require_semver = __commonJS({
1588515888
if (!(other instanceof _SemVer)) {
1588615889
other = new _SemVer(other, this.options);
1588715890
}
15888-
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch);
15891+
if (this.major < other.major) {
15892+
return -1;
15893+
}
15894+
if (this.major > other.major) {
15895+
return 1;
15896+
}
15897+
if (this.minor < other.minor) {
15898+
return -1;
15899+
}
15900+
if (this.minor > other.minor) {
15901+
return 1;
15902+
}
15903+
if (this.patch < other.patch) {
15904+
return -1;
15905+
}
15906+
if (this.patch > other.patch) {
15907+
return 1;
15908+
}
15909+
return 0;
1588915910
}
1589015911
comparePre(other) {
1589115912
if (!(other instanceof _SemVer)) {
@@ -16642,6 +16663,7 @@ var require_range = __commonJS({
1664216663
return result;
1664316664
};
1664416665
var parseComparator = (comp, options) => {
16666+
comp = comp.replace(re3[t3.BUILD], "");
1664516667
debug("comp", comp, options);
1664616668
comp = replaceCarets(comp, options);
1664716669
debug("caret", comp);
@@ -39451,7 +39473,7 @@ var RequestError = class extends Error {
3945139473
};
3945239474

3945339475
//
39454-
var VERSION2 = "10.0.3";
39476+
var VERSION2 = "10.0.5";
3945539477
var defaults_default = {
3945639478
headers: {
3945739479
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
@@ -39781,7 +39803,7 @@ var createTokenAuth = function createTokenAuth2(token) {
3978139803
};
3978239804

3978339805
//
39784-
var VERSION4 = "7.0.4";
39806+
var VERSION4 = "7.0.5";
3978539807

3978639808
//
3978739809
var noop = () => {

.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@58610eacb7efbc261f16197586fa7fb4c81adccd
8+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
99
- name: Setup Saucelabs Variables
10-
uses: angular/dev-infra/github-actions/saucelabs@58610eacb7efbc261f16197586fa7fb4c81adccd
10+
uses: angular/dev-infra/github-actions/saucelabs@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
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@58610eacb7efbc261f16197586fa7fb4c81adccd
24+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
2525
- name: Setup Bazel
26-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
26+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
2727
- name: Setup Bazel RBE
28-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
28+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
2929
- name: Install node modules
3030
run: pnpm install --frozen-lockfile
3131
- name: Build adev
3232
run: pnpm bazel build //adev:build.production
33-
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@58610eacb7efbc261f16197586fa7fb4c81adccd
33+
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
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@58610eacb7efbc261f16197586fa7fb4c81adccd
43+
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1717
with:
1818
persist-credentials: false
19-
- uses: angular/dev-infra/github-actions/branch-manager@58610eacb7efbc261f16197586fa7fb4c81adccd
19+
- uses: angular/dev-infra/github-actions/branch-manager@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
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
- run: pnpm install --frozen-lockfile
4040

41-
- uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
41+
- uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
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@58610eacb7efbc261f16197586fa7fb4c81adccd
24+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
2525
- name: Install node modules
2626
run: pnpm install --frozen-lockfile
2727
- name: Check code lint
@@ -39,13 +39,13 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Initialize environment
42-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@58610eacb7efbc261f16197586fa7fb4c81adccd
42+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
4343
with:
4444
disable-package-manager-cache: true
4545
- name: Setup Bazel
46-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
46+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
4747
- name: Setup Bazel RBE
48-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
48+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
4949
with:
5050
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
5151
- name: Cache downloaded Cypress binary
@@ -72,11 +72,11 @@ jobs:
7272
runs-on: ubuntu-latest
7373
steps:
7474
- name: Initialize environment
75-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@58610eacb7efbc261f16197586fa7fb4c81adccd
75+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
7676
- name: Setup Bazel
77-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
77+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
7878
- name: Setup Bazel Remote Caching
79-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
79+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
8080
with:
8181
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
8282
- name: Install node modules
@@ -88,11 +88,11 @@ jobs:
8888
runs-on: ubuntu-latest
8989
steps:
9090
- name: Initialize environment
91-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@58610eacb7efbc261f16197586fa7fb4c81adccd
91+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
9292
- name: Setup Bazel
93-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
93+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
9494
- name: Setup Bazel Remote Caching
95-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
95+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
9696
with:
9797
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
9898
- name: Install node modules
@@ -105,11 +105,11 @@ jobs:
105105
labels: ubuntu-latest
106106
steps:
107107
- name: Initialize environment
108-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@58610eacb7efbc261f16197586fa7fb4c81adccd
108+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
109109
- name: Setup Bazel
110-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
110+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
111111
- name: Setup Bazel RBE
112-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
112+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
113113
with:
114114
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
115115
- name: Install node modules
@@ -124,11 +124,11 @@ jobs:
124124
labels: ubuntu-latest
125125
steps:
126126
- name: Initialize environment
127-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@58610eacb7efbc261f16197586fa7fb4c81adccd
127+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
128128
- name: Setup Bazel
129-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
129+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
130130
- name: Setup Bazel RBE
131-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
131+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
132132
with:
133133
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
134134
- name: Install node modules
@@ -146,13 +146,13 @@ jobs:
146146
labels: ubuntu-latest
147147
steps:
148148
- name: Initialize environment
149-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@58610eacb7efbc261f16197586fa7fb4c81adccd
149+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
150150
with:
151151
cache-node-modules: true
152152
- name: Setup Bazel
153-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
153+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
154154
- name: Setup Bazel RBE
155-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
155+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
156156
- name: Install node modules
157157
run: pnpm install --frozen-lockfile
158158
- run: echo "https://${{secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN}}:@github.com" > ${HOME}/.git_credentials
@@ -164,11 +164,11 @@ jobs:
164164
labels: ubuntu-latest
165165
steps:
166166
- name: Initialize environment
167-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@58610eacb7efbc261f16197586fa7fb4c81adccd
167+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
168168
- name: Setup Bazel
169-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
169+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
170170
- name: Setup Bazel RBE
171-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
171+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
172172
with:
173173
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
174174
- name: Install node modules
@@ -218,11 +218,11 @@ jobs:
218218
runs-on: ubuntu-latest-8core
219219
steps:
220220
- name: Initialize environment
221-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@58610eacb7efbc261f16197586fa7fb4c81adccd
221+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
222222
- name: Setup Bazel
223-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
223+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
224224
- name: Setup Bazel RBE
225-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
225+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
226226
- name: Install node modules
227227
run: pnpm install --frozen-lockfile
228228
- name: Build adev

.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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
16-
- uses: angular/dev-infra/github-actions/pull-request-labeling@58610eacb7efbc261f16197586fa7fb4c81adccd
16+
- uses: angular/dev-infra/github-actions/pull-request-labeling@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
23-
- uses: angular/dev-infra/github-actions/post-approval-changes@58610eacb7efbc261f16197586fa7fb4c81adccd
23+
- uses: angular/dev-infra/github-actions/post-approval-changes@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
17-
- uses: angular/dev-infra/github-actions/google-internal-tests@58610eacb7efbc261f16197586fa7fb4c81adccd
17+
- uses: angular/dev-infra/github-actions/google-internal-tests@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
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@58610eacb7efbc261f16197586fa7fb4c81adccd
16+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
1717
with:
1818
cache-node-modules: true
1919
- name: Install node modules
2020
run: pnpm install --frozen-lockfile
2121
- name: Setup Bazel
22-
uses: angular/dev-infra/github-actions/bazel/setup@58610eacb7efbc261f16197586fa7fb4c81adccd
22+
uses: angular/dev-infra/github-actions/bazel/setup@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
2323
- name: Setup Bazel Remote Caching
24-
uses: angular/dev-infra/github-actions/bazel/configure-remote@58610eacb7efbc261f16197586fa7fb4c81adccd
24+
uses: angular/dev-infra/github-actions/bazel/configure-remote@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
2525
- name: Setup Saucelabs Variables
26-
uses: angular/dev-infra/github-actions/saucelabs@58610eacb7efbc261f16197586fa7fb4c81adccd
26+
uses: angular/dev-infra/github-actions/saucelabs@56543b10ddb9941c76b4413cc24ec3fa7a43cf5c
2727
- name: Set up Sauce Tunnel Daemon
2828
run: pnpm bazel run //tools/saucelabs-daemon/background-service -- $JOBS &
2929
env:

0 commit comments

Comments
 (0)