-
Notifications
You must be signed in to change notification settings - Fork 13
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
ci: Add Dependabot updates for GitHub Actions #548
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
actions: | ||
patterns: | ||
- "*" | ||
labels: | ||
- "github-actions" | ||
- "dependencies" | ||
Comment on lines
+12
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will automatically apply these labels to the PRs as well. If these labels don't exist yet it will complain for people to make them, but won't fail. |
||
reviewers: | ||
- "BenGalewsky" | ||
- "ponyisi" | ||
Comment on lines
+15
to
+17
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This automatically assigns @BenGalewsky and @ponyisi as reviewers. If alternate maintainers should be assigned we can change that. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ on: | |
push: | ||
branches: | ||
- main | ||
- 3.0_develop | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As this branch no longer exists I'm sneaking this cleanup in here too. |
||
pull_request: | ||
workflow_dispatch: | ||
|
||
|
@@ -31,7 +30,7 @@ jobs: | |
python-version: '3.12' | ||
|
||
- name: Install uv | ||
uses: astral-sh/setup-uv@v3 | ||
uses: astral-sh/setup-uv@v5 | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This patterns will run the Dependabot workflow on a weekly schedule and will group all updates it finds into 1 PR to avoid noise from multiple updates.