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: 0 additions & 10 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -198,16 +198,6 @@
'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
27 changes: 27 additions & 0 deletions .github/scripts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .github/scripts/package.json
Copy link
Member Author

Choose a reason for hiding this comment

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

renovate will update this file and regenerate the package-lock.json

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"//": "Dependencies for GitHub Actions workflows that use actions/github-script",
"name": "github-scripts",
"version": "1.0.0",
"private": true,
"dependencies": {
"yaml": "2.8.0"
}
}
4 changes: 2 additions & 2 deletions .github/workflows/assign-issue-owners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Install yaml
run: npm install [email protected]
- name: Install yaml dependency used below
run: npm install .github/scripts

- name: Parse component label and assign owners
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
Expand Down
Loading