Skip to content

Commit 8da76b6

Browse files
Revert "Merge branch 'angular:main' into pszoboszlay-global-scrollblock-fix"
This reverts commit 0cd1717, reversing changes made to 8545abc.
1 parent d6df8a7 commit 8da76b6

File tree

1,503 files changed

+42680
-46016
lines changed

Some content is hidden

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

1,503 files changed

+42680
-46016
lines changed

.aspect/rules/external_repository_action_cache/npm_translate_lock_MzA5NzUwNzMx

-10
This file was deleted.

.bazelignore

-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,3 @@ integration/yarn-pnp-compat/.yarn/cache
1717
integration/yarn-pnp-compat/.yarn/unplugged
1818
integration/yarn-pnp-compat/.yarn/install-state.gz
1919
integration/yarn-pnp-compat/node_modules
20-
21-
src/cdk/node_modules

.bazelrc

+7-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# Required by `rules_ts`.
2-
common --@aspect_rules_ts//ts:skipLibCheck=always
3-
common --@aspect_rules_ts//ts:default_to_tsc_transpiler
4-
51
###############################
62
# Filesystem interactions #
73
###############################
@@ -11,7 +7,7 @@ common --@aspect_rules_ts//ts:default_to_tsc_transpiler
117
# https://github.com/bazelbuild/rules_typescript/issues/12 which affects the common case of
128
# having `tsconfig.json` in the WORKSPACE directory. Instead, you should run
139
# `bazel info output_base` to find out where the outputs went.
14-
build --symlink_prefix=dist/
10+
build --symlink_prefix=/
1511

1612
# Performance: avoid stat'ing input files
1713
build --watchfs
@@ -35,7 +31,7 @@ build --nobuild_runfile_links
3531
###############################
3632

3733
# A more useful default output mode for bazel query
38-
# Prints eg. "ng_project rule //foo:bar" rather than just "//foo:bar"
34+
# Prints eg. "ng_module rule //foo:bar" rather than just "//foo:bar"
3935
query --output=label_kind
4036

4137
# By default, failing tests don't print any output, it goes to the log file
@@ -91,9 +87,11 @@ build:remote --google_default_credentials=true
9187

9288
# Setup the toolchain and platform for the remote build execution. The platform
9389
# is provided by the shared dev-infra package and targets k8 remote containers.
94-
build:remote --extra_execution_platforms=@devinfra//bazel/remote-execution:platform_with_network
95-
build:remote --host_platform=@devinfra//bazel/remote-execution:platform_with_network
96-
build:remote --platforms=@devinfra//bazel/remote-execution:platform_with_network
90+
build:remote --crosstool_top=@npm//@angular/build-tooling/bazel/remote-execution/cpp:cc_toolchain_suite
91+
build:remote --extra_toolchains=@npm//@angular/build-tooling/bazel/remote-execution/cpp:cc_toolchain
92+
build:remote --extra_execution_platforms=@npm//@angular/build-tooling/bazel/remote-execution:platform_with_network
93+
build:remote --host_platform=@npm//@angular/build-tooling/bazel/remote-execution:platform_with_network
94+
build:remote --platforms=@npm//@angular/build-tooling/bazel/remote-execution:platform_with_network
9795

9896
################################
9997
# Sandbox settings #
@@ -120,10 +118,6 @@ build:build-results --bes_results_url="https://source.cloud.google.com/results/i
120118

121119
# Set remote caching settings
122120
build:remote --remote_accept_cached=true
123-
build:remote --remote_upload_local_results=false
124-
125-
# Additional flags added when running a "trusted build" with additional access
126-
build:trusted-build --remote_upload_local_results=true
127121

128122
################################
129123
# --config=debug #

.bazelversion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.5.0
1+
5.0.0

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
/.github/ISSUE_TEMPLATE/** @angular/components-googlers
1414

1515
/tools/ @angular/dev-infra-components
16+
/tools/public_api_guard/**/*.md @angular/components-googlers

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
1717
with:
1818
persist-credentials: false
19-
- uses: angular/dev-infra/github-actions/branch-manager@e3c0efecadda0e0fbb616abcdf447c788959ca64
19+
- uses: angular/dev-infra/github-actions/branch-manager@8a438a3bdc519880d78b5ac92b62bfe688deb058
2020
with:
2121
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/ci.material-aio.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Initialize environment
31-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
31+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
3232
- name: Install node modules
3333
run: yarn install --immutable
3434
- name: Execute Linting
@@ -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@e3c0efecadda0e0fbb616abcdf447c788959ca64
41+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
4242
- name: Install node modules
4343
run: yarn install --immutable
4444
- name: Execute Direct Production Build (deploy usage)
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-latest
5151
steps:
5252
- name: Initialize environment
53-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
53+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
5454
- name: Install node modules
5555
run: yarn install --immutable
5656
- name: Execute Tests
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-22.04 # Note, fails on Ubuntu 24.04. see https://github.com/actions/runner-images/issues/10636
6868
steps:
6969
- name: Initialize environment
70-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
70+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
7171
- name: Install node modules
7272
run: yarn install --immutable
7373
- name: Execute Lighthouse Audit

.github/workflows/ci.yml

+34-48
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@e3c0efecadda0e0fbb616abcdf447c788959ca64
24+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
2525
with:
2626
cache-node-modules: true
2727
- name: Install node modules
@@ -54,19 +54,17 @@ jobs:
5454
runs-on: ubuntu-latest
5555
steps:
5656
- name: Initialize environment
57-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
57+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
5858
with:
5959
cache-node-modules: true
6060
- name: Setup Bazel
61-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
61+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
6262
- name: Setup Bazel RBE
63-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
64-
with:
65-
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
63+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
6664
- name: Install node modules
6765
run: yarn install --frozen-lockfile
6866
- name: Check API Goldens
69-
run: yarn bazel test goldens/...
67+
run: yarn bazel test tools/public_api_guard/...
7068
- uses: ./.github/actions/slack
7169
if: failure()
7270
with:
@@ -77,15 +75,13 @@ jobs:
7775
runs-on: ubuntu-latest
7876
steps:
7977
- name: Initialize environment
80-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
78+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
8179
with:
8280
cache-node-modules: true
8381
- name: Setup Bazel
84-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
82+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
8583
- name: Setup Bazel RBE
86-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
87-
with:
88-
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
84+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
8985
- name: Install node modules
9086
run: yarn install --frozen-lockfile
9187
- name: Run e2e tests
@@ -100,19 +96,19 @@ jobs:
10096
runs-on: ubuntu-latest
10197
steps:
10298
- name: Initialize environment
103-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
99+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
104100
with:
105101
cache-node-modules: true
106102
- name: Setup Bazel
107-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
103+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
108104
- name: Setup Bazel RBE
109-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
110-
with:
111-
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
105+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
112106
- name: Install node modules
113107
run: yarn install --frozen-lockfile
114108
- name: Run integration tests
115109
run: yarn integration-tests
110+
- name: Running size integration tests
111+
run: yarn integration-tests:size-test
116112
continue-on-error: true
117113
- uses: ./.github/actions/slack
118114
if: failure()
@@ -124,15 +120,13 @@ jobs:
124120
runs-on: ubuntu-latest-4core
125121
steps:
126122
- name: Initialize environment
127-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
123+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
128124
with:
129125
cache-node-modules: true
130126
- name: Setup Bazel
131-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
127+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
132128
- name: Setup Bazel RBE
133-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
134-
with:
135-
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
129+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
136130
- name: Install node modules
137131
run: yarn install --frozen-lockfile
138132
- name: Run linker AOT tests
@@ -147,15 +141,13 @@ jobs:
147141
runs-on: ubuntu-latest-4core
148142
steps:
149143
- name: Initialize environment
150-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
144+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
151145
with:
152146
cache-node-modules: true
153147
- name: Setup Bazel
154-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
148+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
155149
- name: Setup Bazel RBE
156-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
157-
with:
158-
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
150+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
159151
- name: Install node modules
160152
run: yarn install --frozen-lockfile
161153
- name: Run linker JIT tests
@@ -170,21 +162,17 @@ jobs:
170162
runs-on: ubuntu-latest-16core
171163
steps:
172164
- name: Initialize environment
173-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
165+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
174166
with:
175167
cache-node-modules: true
176168
- name: Setup Bazel
177-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
169+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
178170
- name: Setup Bazel RBE
179-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
180-
with:
181-
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
171+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
182172
- name: Install node modules
183173
run: yarn install --frozen-lockfile
184174
- name: Run tests
185175
run: bazel test --build_tag_filters=-e2e --test_tag_filters=-e2e --build_tests_only -- src/...
186-
env:
187-
ASPECT_RULES_JS_FROZEN_PNPM_LOCK: '1'
188176
- uses: ./.github/actions/slack
189177
if: failure()
190178
with:
@@ -195,15 +183,13 @@ jobs:
195183
runs-on: ubuntu-latest-16core
196184
steps:
197185
- name: Initialize environment
198-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
186+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
199187
with:
200188
cache-node-modules: true
201189
- name: Setup Bazel
202-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
190+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
203191
- name: Setup Bazel RBE
204-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
205-
with:
206-
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
192+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
207193
- name: Install node modules
208194
run: yarn install --frozen-lockfile
209195
- name: Run tests
@@ -218,13 +204,13 @@ jobs:
218204
runs-on: ubuntu-latest-4core
219205
steps:
220206
- name: Initialize environment
221-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
207+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
222208
with:
223209
cache-node-modules: true
224210
- name: Setup Bazel
225-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
211+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
226212
- name: Setup Bazel RBE
227-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
213+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
228214
- name: Install node modules
229215
run: yarn install --frozen-lockfile
230216
- name: Build and Verify Release Output
@@ -249,17 +235,17 @@ jobs:
249235
runs-on: ubuntu-latest-4core
250236
steps:
251237
- name: Initialize environment
252-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
238+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
253239
with:
254240
cache-node-modules: true
255241
# See: https://github.com/puppeteer/puppeteer/pull/13196 and
256242
# https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md.
257243
- name: Disable AppArmor
258244
run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
259245
- name: Setup Bazel
260-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
246+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
261247
- name: Setup Bazel RBE
262-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
248+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
263249
- name: Install node modules
264250
run: yarn install --frozen-lockfile
265251
- name: Build and Verify Release Output
@@ -287,14 +273,14 @@ jobs:
287273
CI_RUNNER_NUMBER: ${{ github.run_id }}
288274
steps:
289275
- name: Initialize environment
290-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
276+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
291277
with:
292278
cache-node-modules: true
293279
- name: Install node modules
294280
run: yarn install --frozen-lockfile
295281
- name: Setup Bazel
296-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
282+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
297283
- name: Setup Browserstack Variables
298-
uses: angular/dev-infra/github-actions/browserstack@e3c0efecadda0e0fbb616abcdf447c788959ca64
284+
uses: angular/dev-infra/github-actions/browserstack@8a438a3bdc519880d78b5ac92b62bfe688deb058
299285
- name: Run tests on Browserstack
300286
run: ./scripts/circleci/run-browserstack-tests.sh

.github/workflows/deploy-dev-app-main-push.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Initialize environment
20-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
20+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
2121
with:
2222
cache-node-modules: true
2323
- name: Setup Bazel
24-
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
24+
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
2525
- name: Setup Bazel RBE
26-
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
26+
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
2727
- name: Install node modules
2828
run: yarn install --frozen-lockfile
2929

.github/workflows/dev-infra.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
15-
- uses: angular/dev-infra/github-actions/commit-message-based-labels@e3c0efecadda0e0fbb616abcdf447c788959ca64
15+
- uses: angular/dev-infra/github-actions/commit-message-based-labels@8a438a3bdc519880d78b5ac92b62bfe688deb058
1616
with:
1717
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
1818
post_approval_changes:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
22-
- uses: angular/dev-infra/github-actions/post-approval-changes@e3c0efecadda0e0fbb616abcdf447c788959ca64
22+
- uses: angular/dev-infra/github-actions/post-approval-changes@8a438a3bdc519880d78b5ac92b62bfe688deb058
2323
with:
2424
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/google-internal-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
16-
- uses: angular/dev-infra/github-actions/google-internal-tests@e3c0efecadda0e0fbb616abcdf447c788959ca64
16+
- uses: angular/dev-infra/github-actions/google-internal-tests@8a438a3bdc519880d78b5ac92b62bfe688deb058
1717
with:
1818
run-tests-guide-url: http://go/angular-material-presubmit
1919
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)