Skip to content

Commit 6ec51e7

Browse files
angular-robotdevversion
authored andcommitted
build: update angular shared dev-infra code
1 parent 289ddd3 commit 6ec51e7

File tree

8 files changed

+134
-1177
lines changed

8 files changed

+134
-1177
lines changed

.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@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
1717
with:
1818
persist-credentials: false
19-
- uses: angular/dev-infra/github-actions/branch-manager@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
19+
- uses: angular/dev-infra/github-actions/branch-manager@fb30926790c6225d553b91a4818cab2fdde4fb4e
2020
with:
2121
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/build-dev-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2.0.0
2626
- uses: ./.github/actions/yarn-install
2727

28-
- uses: angular/dev-infra/github-actions/setup-bazel-remote-exec@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
28+
- uses: angular/dev-infra/github-actions/setup-bazel-remote-exec@fb30926790c6225d553b91a4818cab2fdde4fb4e
2929
with:
3030
bazelrc: ./.bazelrc.user
3131

@@ -34,7 +34,7 @@ jobs:
3434
# the number of concurrent actions is determined based on the host resources.
3535
- run: bazel build //src/dev-app:web_package --symlink_prefix=dist/ --jobs=32
3636

37-
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
37+
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@fb30926790c6225d553b91a4818cab2fdde4fb4e
3838
with:
3939
workflow-artifact-name: 'dev-app'
4040
pull-number: '${{github.event.pull_request.number}}'

.github/workflows/ci.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Initialize environment
26-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
26+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@fb30926790c6225d553b91a4818cab2fdde4fb4e
2727
with:
2828
cache-node-modules: true
2929
- name: Install node modules
@@ -61,13 +61,13 @@ jobs:
6161
runs-on: ubuntu-latest
6262
steps:
6363
- name: Initialize environment
64-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
64+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@fb30926790c6225d553b91a4818cab2fdde4fb4e
6565
with:
6666
cache-node-modules: true
6767
- name: Setup Bazel
68-
uses: angular/dev-infra/github-actions/bazel/setup@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
68+
uses: angular/dev-infra/github-actions/bazel/setup@fb30926790c6225d553b91a4818cab2fdde4fb4e
6969
- name: Setup Bazel RBE
70-
uses: angular/dev-infra/github-actions/bazel/configure-remote@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
70+
uses: angular/dev-infra/github-actions/bazel/configure-remote@fb30926790c6225d553b91a4818cab2fdde4fb4e
7171
- name: Install node modules
7272
run: yarn install --frozen-lockfile
7373
- name: Check API Goldens
@@ -77,13 +77,13 @@ jobs:
7777
runs-on: ubuntu-latest
7878
steps:
7979
- name: Initialize environment
80-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
80+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@fb30926790c6225d553b91a4818cab2fdde4fb4e
8181
with:
8282
cache-node-modules: true
8383
- name: Setup Bazel
84-
uses: angular/dev-infra/github-actions/bazel/setup@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
84+
uses: angular/dev-infra/github-actions/bazel/setup@fb30926790c6225d553b91a4818cab2fdde4fb4e
8585
- name: Setup Bazel RBE
86-
uses: angular/dev-infra/github-actions/bazel/configure-remote@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
86+
uses: angular/dev-infra/github-actions/bazel/configure-remote@fb30926790c6225d553b91a4818cab2fdde4fb4e
8787
- name: Install node modules
8888
run: yarn install --frozen-lockfile
8989
- name: Run e2e tests
@@ -93,13 +93,13 @@ jobs:
9393
runs-on: ubuntu-latest
9494
steps:
9595
- name: Initialize environment
96-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
96+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@fb30926790c6225d553b91a4818cab2fdde4fb4e
9797
with:
9898
cache-node-modules: true
9999
- name: Setup Bazel
100-
uses: angular/dev-infra/github-actions/bazel/setup@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
100+
uses: angular/dev-infra/github-actions/bazel/setup@fb30926790c6225d553b91a4818cab2fdde4fb4e
101101
- name: Setup Bazel RBE
102-
uses: angular/dev-infra/github-actions/bazel/configure-remote@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
102+
uses: angular/dev-infra/github-actions/bazel/configure-remote@fb30926790c6225d553b91a4818cab2fdde4fb4e
103103
- name: Install node modules
104104
run: yarn install --frozen-lockfile
105105
- name: Run integration tests
@@ -120,13 +120,13 @@ jobs:
120120
runs-on: ubuntu-latest-4core
121121
steps:
122122
- name: Initialize environment
123-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
123+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@fb30926790c6225d553b91a4818cab2fdde4fb4e
124124
with:
125125
cache-node-modules: true
126126
- name: Setup Bazel
127-
uses: angular/dev-infra/github-actions/bazel/setup@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
127+
uses: angular/dev-infra/github-actions/bazel/setup@fb30926790c6225d553b91a4818cab2fdde4fb4e
128128
- name: Setup Bazel RBE
129-
uses: angular/dev-infra/github-actions/bazel/configure-remote@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
129+
uses: angular/dev-infra/github-actions/bazel/configure-remote@fb30926790c6225d553b91a4818cab2fdde4fb4e
130130
- name: Install node modules
131131
run: yarn install --frozen-lockfile
132132
- name: Run linker AOT tests
@@ -136,13 +136,13 @@ jobs:
136136
runs-on: ubuntu-latest-4core
137137
steps:
138138
- name: Initialize environment
139-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
139+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@fb30926790c6225d553b91a4818cab2fdde4fb4e
140140
with:
141141
cache-node-modules: true
142142
- name: Setup Bazel
143-
uses: angular/dev-infra/github-actions/bazel/setup@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
143+
uses: angular/dev-infra/github-actions/bazel/setup@fb30926790c6225d553b91a4818cab2fdde4fb4e
144144
- name: Setup Bazel RBE
145-
uses: angular/dev-infra/github-actions/bazel/configure-remote@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
145+
uses: angular/dev-infra/github-actions/bazel/configure-remote@fb30926790c6225d553b91a4818cab2fdde4fb4e
146146
- name: Install node modules
147147
run: yarn install --frozen-lockfile
148148
- name: Run linker JIT tests

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
npx -y firebase-tools@latest target:clear --project ${{env.PREVIEW_PROJECT}} hosting dev-app
3434
npx -y firebase-tools@latest target:apply --project ${{env.PREVIEW_PROJECT}} hosting dev-app ${{env.PREVIEW_SITE}}
3535
36-
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
36+
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@fb30926790c6225d553b91a4818cab2fdde4fb4e
3737
with:
3838
github-token: '${{secrets.GITHUB_TOKEN}}'
3939
workflow-artifact-name: 'dev-app'

.github/workflows/dev-infra.yml

Lines changed: 2 additions & 2 deletions
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@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
15+
- uses: angular/dev-infra/github-actions/commit-message-based-labels@fb30926790c6225d553b91a4818cab2fdde4fb4e
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@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
22+
- uses: angular/dev-infra/github-actions/post-approval-changes@fb30926790c6225d553b91a4818cab2fdde4fb4e
2323
with:
2424
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
@@ -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@9931e1a8d1b62fcd2267e89f9993a494856cc1cd
16+
- uses: angular/dev-infra/github-actions/google-internal-tests@fb30926790c6225d553b91a4818cab2fdde4fb4e
1717
with:
1818
run-tests-guide-url: http://go/angular-material-presubmit
1919
github-token: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@
7575
"@angular-devkit/core": "^17.0.0-next.6",
7676
"@angular-devkit/schematics": "^17.0.0-next.6",
7777
"@angular/bazel": "https://github.com/angular/bazel-builds.git#bac9c1abe1e6ac1801fbbccb53353a1ed7126469",
78-
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#22a9a75114d5e80907054f01b9fa360972de1c05",
78+
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#28072768cb6624221b17766a7f571b6d9e5d55e6",
7979
"@angular/cli": "^17.0.0-next.6",
8080
"@angular/compiler-cli": "^17.0.0-next.6",
8181
"@angular/localize": "^17.0.0-next.6",
82-
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#2c4d983ef0f1f000a8554b3b7fbf7f1061c877d3",
82+
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#16b9f550b766b52f51dc5580cbac13378a1ab5f4",
8383
"@angular/platform-browser-dynamic": "^17.0.0-next.6",
8484
"@angular/platform-server": "^17.0.0-next.6",
8585
"@angular/router": "^17.0.0-next.6",

0 commit comments

Comments
 (0)