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
10 changes: 10 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,16 @@
'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)',
],
},
{
customType: 'regex',
datasourceTemplate: 'npm',
managerFilePatterns: [
'.github/workflows/**',
],
matchStrings: [
'npm install (?<depName>[^@\\s]+)@(?<currentValue>[^\\s]+)',
],
},
{
customType: 'regex',
datasourceTemplate: 'java-version',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/assign-issue-owners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Install js-yaml
run: npm install js-yaml
run: npm install js-yaml@4.0.0
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

intentionally using version prior to latest so we can see right away if renovate custom manager is working


- name: Parse component label and assign owners
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
Expand Down
Loading