Skip to content

Commit 0cd1717

Browse files
Merge branch 'angular:main' into pszoboszlay-global-scrollblock-fix
2 parents 8545abc + f8ba137 commit 0cd1717

File tree

1,504 files changed

+46123
-42787
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,504 files changed

+46123
-42787
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# @generated
2+
# Input hashes for repository rule npm_translate_lock(name = "npm2", pnpm_lock = "@//:pnpm-lock.yaml").
3+
# This file should be checked into version control along with the pnpm-lock.yaml file.
4+
.npmrc=-1406867100
5+
package.json=130765121
6+
patches/@angular__compiler-cli.patch=-65319555
7+
pnpm-lock.yaml=-266832367
8+
pnpm-workspace.yaml=14857322
9+
src/cdk/package.json=-908433069
10+
yarn.lock=230420156

.bazelignore

+2
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ 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

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

1216
# Performance: avoid stat'ing input files
1317
build --watchfs
@@ -31,7 +35,7 @@ build --nobuild_runfile_links
3135
###############################
3236

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

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

8892
# Setup the toolchain and platform for the remote build execution. The platform
8993
# is provided by the shared dev-infra package and targets k8 remote containers.
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
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
9597

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

119121
# Set remote caching settings
120122
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
121127

122128
################################
123129
# --config=debug #

.bazelversion

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

.github/CODEOWNERS

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
19+
- uses: angular/dev-infra/github-actions/branch-manager@e3c0efecadda0e0fbb616abcdf447c788959ca64
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
31+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
41+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
53+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
70+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
7171
- name: Install node modules
7272
run: yarn install --immutable
7373
- name: Execute Lighthouse Audit

.github/workflows/ci.yml

+48-34
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
24+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
2525
with:
2626
cache-node-modules: true
2727
- name: Install node modules
@@ -54,17 +54,19 @@ jobs:
5454
runs-on: ubuntu-latest
5555
steps:
5656
- name: Initialize environment
57-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
57+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
5858
with:
5959
cache-node-modules: true
6060
- name: Setup Bazel
61-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
61+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
6262
- name: Setup Bazel RBE
63-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
63+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
64+
with:
65+
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
6466
- name: Install node modules
6567
run: yarn install --frozen-lockfile
6668
- name: Check API Goldens
67-
run: yarn bazel test tools/public_api_guard/...
69+
run: yarn bazel test goldens/...
6870
- uses: ./.github/actions/slack
6971
if: failure()
7072
with:
@@ -75,13 +77,15 @@ jobs:
7577
runs-on: ubuntu-latest
7678
steps:
7779
- name: Initialize environment
78-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
80+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
7981
with:
8082
cache-node-modules: true
8183
- name: Setup Bazel
82-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
84+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
8385
- name: Setup Bazel RBE
84-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
86+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
87+
with:
88+
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
8589
- name: Install node modules
8690
run: yarn install --frozen-lockfile
8791
- name: Run e2e tests
@@ -96,19 +100,19 @@ jobs:
96100
runs-on: ubuntu-latest
97101
steps:
98102
- name: Initialize environment
99-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
103+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
100104
with:
101105
cache-node-modules: true
102106
- name: Setup Bazel
103-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
107+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
104108
- name: Setup Bazel RBE
105-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
109+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
110+
with:
111+
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
106112
- name: Install node modules
107113
run: yarn install --frozen-lockfile
108114
- name: Run integration tests
109115
run: yarn integration-tests
110-
- name: Running size integration tests
111-
run: yarn integration-tests:size-test
112116
continue-on-error: true
113117
- uses: ./.github/actions/slack
114118
if: failure()
@@ -120,13 +124,15 @@ jobs:
120124
runs-on: ubuntu-latest-4core
121125
steps:
122126
- name: Initialize environment
123-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
127+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
124128
with:
125129
cache-node-modules: true
126130
- name: Setup Bazel
127-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
131+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
128132
- name: Setup Bazel RBE
129-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
133+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
134+
with:
135+
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
130136
- name: Install node modules
131137
run: yarn install --frozen-lockfile
132138
- name: Run linker AOT tests
@@ -141,13 +147,15 @@ jobs:
141147
runs-on: ubuntu-latest-4core
142148
steps:
143149
- name: Initialize environment
144-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
150+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
145151
with:
146152
cache-node-modules: true
147153
- name: Setup Bazel
148-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
154+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
149155
- name: Setup Bazel RBE
150-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
156+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
157+
with:
158+
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
151159
- name: Install node modules
152160
run: yarn install --frozen-lockfile
153161
- name: Run linker JIT tests
@@ -162,17 +170,21 @@ jobs:
162170
runs-on: ubuntu-latest-16core
163171
steps:
164172
- name: Initialize environment
165-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
173+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
166174
with:
167175
cache-node-modules: true
168176
- name: Setup Bazel
169-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
177+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
170178
- name: Setup Bazel RBE
171-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
179+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
180+
with:
181+
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
172182
- name: Install node modules
173183
run: yarn install --frozen-lockfile
174184
- name: Run tests
175185
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'
176188
- uses: ./.github/actions/slack
177189
if: failure()
178190
with:
@@ -183,13 +195,15 @@ jobs:
183195
runs-on: ubuntu-latest-16core
184196
steps:
185197
- name: Initialize environment
186-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
198+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
187199
with:
188200
cache-node-modules: true
189201
- name: Setup Bazel
190-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
202+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
191203
- name: Setup Bazel RBE
192-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
204+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
205+
with:
206+
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
193207
- name: Install node modules
194208
run: yarn install --frozen-lockfile
195209
- name: Run tests
@@ -204,13 +218,13 @@ jobs:
204218
runs-on: ubuntu-latest-4core
205219
steps:
206220
- name: Initialize environment
207-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
221+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
208222
with:
209223
cache-node-modules: true
210224
- name: Setup Bazel
211-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
225+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
212226
- name: Setup Bazel RBE
213-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
227+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
214228
- name: Install node modules
215229
run: yarn install --frozen-lockfile
216230
- name: Build and Verify Release Output
@@ -235,17 +249,17 @@ jobs:
235249
runs-on: ubuntu-latest-4core
236250
steps:
237251
- name: Initialize environment
238-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
252+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
239253
with:
240254
cache-node-modules: true
241255
# See: https://github.com/puppeteer/puppeteer/pull/13196 and
242256
# https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md.
243257
- name: Disable AppArmor
244258
run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
245259
- name: Setup Bazel
246-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
260+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
247261
- name: Setup Bazel RBE
248-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
262+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
249263
- name: Install node modules
250264
run: yarn install --frozen-lockfile
251265
- name: Build and Verify Release Output
@@ -273,14 +287,14 @@ jobs:
273287
CI_RUNNER_NUMBER: ${{ github.run_id }}
274288
steps:
275289
- name: Initialize environment
276-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@8a438a3bdc519880d78b5ac92b62bfe688deb058
290+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
277291
with:
278292
cache-node-modules: true
279293
- name: Install node modules
280294
run: yarn install --frozen-lockfile
281295
- name: Setup Bazel
282-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
296+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
283297
- name: Setup Browserstack Variables
284-
uses: angular/dev-infra/github-actions/browserstack@8a438a3bdc519880d78b5ac92b62bfe688deb058
298+
uses: angular/dev-infra/github-actions/browserstack@e3c0efecadda0e0fbb616abcdf447c788959ca64
285299
- name: Run tests on Browserstack
286300
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
20+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@e3c0efecadda0e0fbb616abcdf447c788959ca64
2121
with:
2222
cache-node-modules: true
2323
- name: Setup Bazel
24-
uses: angular/dev-infra/github-actions/bazel/setup@8a438a3bdc519880d78b5ac92b62bfe688deb058
24+
uses: angular/dev-infra/github-actions/bazel/setup@e3c0efecadda0e0fbb616abcdf447c788959ca64
2525
- name: Setup Bazel RBE
26-
uses: angular/dev-infra/github-actions/bazel/configure-remote@8a438a3bdc519880d78b5ac92b62bfe688deb058
26+
uses: angular/dev-infra/github-actions/bazel/configure-remote@e3c0efecadda0e0fbb616abcdf447c788959ca64
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
15+
- uses: angular/dev-infra/github-actions/commit-message-based-labels@e3c0efecadda0e0fbb616abcdf447c788959ca64
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
22+
- uses: angular/dev-infra/github-actions/post-approval-changes@e3c0efecadda0e0fbb616abcdf447c788959ca64
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@8a438a3bdc519880d78b5ac92b62bfe688deb058
16+
- uses: angular/dev-infra/github-actions/google-internal-tests@e3c0efecadda0e0fbb616abcdf447c788959ca64
1717
with:
1818
run-tests-guide-url: http://go/angular-material-presubmit
1919
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)