Skip to content

Commit

Permalink
build: update angular
Browse files Browse the repository at this point in the history
  • Loading branch information
angular-robot committed Sep 13, 2023
1 parent 6a97d41 commit aa3c2e8
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assistant-to-the-branch-manager.yml
Expand Up @@ -16,6 +16,6 @@ jobs:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
with:
persist-credentials: false
- uses: angular/dev-infra/github-actions/branch-manager@0f307b2f54f76ec4f57da4d3e51720947fea5726
- uses: angular/dev-infra/github-actions/branch-manager@f57f401f72c952b75835cf1dc8c1942bf69347a2
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Setup ESLint Caching
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
Expand Down Expand Up @@ -71,11 +71,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/bazel/setup@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/bazel/configure-remote@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Build release targets
Expand Down Expand Up @@ -106,9 +106,9 @@ jobs:
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/bazel/setup@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/bazel/configure-remote@f57f401f72c952b75835cf1dc8c1942bf69347a2
- if: matrix.version == env.defaultVersion
name: Run tests for default node version
run: yarn bazel test --test_tag_filters=-node18,-node16-broken //packages/...
Expand All @@ -135,15 +135,15 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@f57f401f72c952b75835cf1dc8c1942bf69347a2
with:
fetch-depth: 1
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/bazel/setup@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/bazel/configure-remote@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Run CLI E2E tests
run: yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}

Expand All @@ -160,14 +160,14 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@f57f401f72c952b75835cf1dc8c1942bf69347a2
with:
fetch-depth: 1
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/bazel/setup@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0f307b2f54f76ec4f57da4d3e51720947fea5726
uses: angular/dev-infra/github-actions/bazel/configure-remote@f57f401f72c952b75835cf1dc8c1942bf69347a2
- name: Run CLI E2E tests
run: yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.snapshots.${{ matrix.subset }}_node${{ matrix.node }}
4 changes: 2 additions & 2 deletions .github/workflows/dev-infra.yml
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: angular/dev-infra/github-actions/commit-message-based-labels@0f307b2f54f76ec4f57da4d3e51720947fea5726
- uses: angular/dev-infra/github-actions/commit-message-based-labels@f57f401f72c952b75835cf1dc8c1942bf69347a2
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
post_approval_changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: angular/dev-infra/github-actions/post-approval-changes@0f307b2f54f76ec4f57da4d3e51720947fea5726
- uses: angular/dev-infra/github-actions/post-approval-changes@f57f401f72c952b75835cf1dc8c1942bf69347a2
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
2 changes: 1 addition & 1 deletion .github/workflows/feature-requests.yml
Expand Up @@ -16,6 +16,6 @@ jobs:
if: github.repository == 'angular/angular-cli'
runs-on: ubuntu-latest
steps:
- uses: angular/dev-infra/github-actions/feature-request@0f307b2f54f76ec4f57da4d3e51720947fea5726
- uses: angular/dev-infra/github-actions/feature-request@f57f401f72c952b75835cf1dc8c1942bf69347a2
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -61,7 +61,7 @@
"@ampproject/remapping": "2.2.1",
"@angular/animations": "17.0.0-next.3",
"@angular/bazel": "https://github.com/angular/bazel-builds.git#d1fcbc3971e995564e8499487ddd9b1c7db63129",
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#b88792a3059b17ea0a3cfbacf622d4bff5dfe91f",
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#0b70c7c68382b71d83ebb5130331e1727d519d0a",
"@angular/cdk": "17.0.0-next.2",
"@angular/common": "17.0.0-next.3",
"@angular/compiler": "17.0.0-next.3",
Expand All @@ -70,7 +70,7 @@
"@angular/forms": "17.0.0-next.3",
"@angular/localize": "17.0.0-next.3",
"@angular/material": "17.0.0-next.2",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#497c9029bbbe80c79cad38b66974269797a7898c",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#ae56e0abd45b2f73384d8cbe754ae023d2991640",
"@angular/platform-browser": "17.0.0-next.3",
"@angular/platform-browser-dynamic": "17.0.0-next.3",
"@angular/platform-server": "17.0.0-next.3",
Expand Down
16 changes: 8 additions & 8 deletions yarn.lock
Expand Up @@ -138,10 +138,10 @@
"@angular/core" "^13.0.0 || ^14.0.0-0"
reflect-metadata "^0.1.13"

"@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#b88792a3059b17ea0a3cfbacf622d4bff5dfe91f":
version "0.0.0-0f307b2f54f76ec4f57da4d3e51720947fea5726"
uid b88792a3059b17ea0a3cfbacf622d4bff5dfe91f
resolved "https://github.com/angular/dev-infra-private-build-tooling-builds.git#b88792a3059b17ea0a3cfbacf622d4bff5dfe91f"
"@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#0b70c7c68382b71d83ebb5130331e1727d519d0a":
version "0.0.0-f57f401f72c952b75835cf1dc8c1942bf69347a2"
uid "0b70c7c68382b71d83ebb5130331e1727d519d0a"
resolved "https://github.com/angular/dev-infra-private-build-tooling-builds.git#0b70c7c68382b71d83ebb5130331e1727d519d0a"
dependencies:
"@angular-devkit/build-angular" "16.2.0-rc.1"
"@angular/benchpress" "0.3.0"
Expand Down Expand Up @@ -299,10 +299,10 @@
"@material/typography" "15.0.0-canary.bc9ae6c9c.0"
tslib "^2.3.0"

"@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#497c9029bbbe80c79cad38b66974269797a7898c":
version "0.0.0-0f307b2f54f76ec4f57da4d3e51720947fea5726"
uid "497c9029bbbe80c79cad38b66974269797a7898c"
resolved "https://github.com/angular/dev-infra-private-ng-dev-builds.git#497c9029bbbe80c79cad38b66974269797a7898c"
"@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#ae56e0abd45b2f73384d8cbe754ae023d2991640":
version "0.0.0-f57f401f72c952b75835cf1dc8c1942bf69347a2"
uid ae56e0abd45b2f73384d8cbe754ae023d2991640
resolved "https://github.com/angular/dev-infra-private-ng-dev-builds.git#ae56e0abd45b2f73384d8cbe754ae023d2991640"
dependencies:
"@yarnpkg/lockfile" "^1.1.0"
typescript "~4.9.0"
Expand Down

0 comments on commit aa3c2e8

Please sign in to comment.