Skip to content

ci: use ubuntu-latest-4core for Angular renovate #2816

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions .github/workflows/ng-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,18 @@ jobs:
renovate:
strategy:
matrix:
REPOSITORY:
- angular/angular
- angular/dev-infra
- angular/components
- angular/angular-cli
- angular/vscode-ng-language-service
runs-on: ubuntu-latest
repositories:
- name: angular/angular
run_os: ubuntu-latest-4core
- name: angular/dev-infra
run_os: ubuntu-latest
- name: angular/components
run_os: ubuntu-latest
- name: angular/angular-cli
run_os: ubuntu-latest
- name: angular/vscode-ng-language-service
run_os: ubuntu-latest
runs-on: ${{ matrix.repositories.run_os }}
steps:
# Because the checkout and setup node action is contained in the dev-infra repo, we must
# checkout the repo to be able to run the action we have created. Other repos will skip
Expand All @@ -45,4 +50,4 @@ jobs:
RENOVATE_FORK_TOKEN: ${{ secrets.NG_RENOVATE_USER_ACCESS_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.NG_RENOVATE_USER_ACCESS_TOKEN }}
RENOVATE_CONFIG_FILE: .github/ng-renovate/runner-config.js
RENOVATE_REPOSITORIES: ${{ matrix.REPOSITORY }}
RENOVATE_REPOSITORIES: ${{ matrix.repositories.name }}