Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/ng-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ jobs:
- angular/.github
runs-on: ubuntu-latest
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
# this step.
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./github-actions/npm/checkout-and-setup-node
- run: npm install --global pnpm@9.15.6
shell: bash

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.11.1
22.15.0
10 changes: 9 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
},
"ignorePaths": ["bazel/integration/tests/**"],
"ignoreDeps": ["rules_pkg", "@angular-devkit/build-angular"],
"enabledManagers": ["npm", "bazel", "github-actions"],
"baseBranches": ["main"],
"postUpgradeTasks": {
"commands": [
Expand All @@ -27,6 +26,15 @@
"executionMode": "update"
},
"packageRules": [
{
"matchDepNames": ["node"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"enabled": false,
"matchDepNames": ["node"],
"matchUpdateTypes": ["major"]
},
{
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies",
Expand Down
Loading