Skip to content
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

chore(deps): update actions/checkout action to v4 #2493

Merged
merged 4 commits into from
Sep 7, 2023
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
14 changes: 9 additions & 5 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
"config:base",
":preserveSemverRanges"
],
"pip_requirements": {
"fileMatch": [
"(^|/)docs/requirements.txt$"
]
},
"packageRules": [
{
"fileMatch": [
"matchUpdateTypes": ["minor", "patch"],
"matchFileNames": [
"(^|/)docs/requirements.txt$"
],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "Doc packages",
"schedule": ["before 2am on monday"],
"matchCurrentVersion": "!/^0/",
"automerge": true
"groupName": "Doc packages"
}
]
}
}
6 changes: 3 additions & 3 deletions .github/workflows/renovate-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Validate
uses: rinchsan/renovate-config-validator@v0.0.12
uses: suzuki-shunsuke/github-action-renovate-config-validator@v0.1.2
with:
pattern: '*.json' # Regular expression for filename to validate, default to *.json
config_file_path: .github/renovate.json
Loading