-
Notifications
You must be signed in to change notification settings - Fork 159
chore: bump dep version, check dep monthly #1992
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
Conversation
Signed-off-by: Keming <kemingyang@tensorchord.ai>
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.
PR Overview
This PR updates dependency schedules and bumps dependency versions for improved maintenance and consistency.
- Update dependabot schedule for Go modules and GitHub Actions from weekly to monthly
- Bump cibuildwheel version in the release workflow
- Refactor Docker auth provider initialization for clarity
- Update the ImageLoad call for enhanced quiet mode handling
Reviewed Changes
File | Description |
---|---|
.github/dependabot.yml | Update dependency schedule from weekly to monthly configuration |
.github/workflows/release.yml | Bump cibuildwheel version to improve build compatibility |
pkg/builder/build.go | Refactor Docker auth provider initialization for clearer config |
pkg/driver/docker/docker.go | Modify ImageLoad call with quiet option for improved behavior |
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Comments suppressed due to low confidence (2)
.github/dependabot.yml:6
- Changing the schedule interval to monthly removes previously set parameters (day, time, timezone, open-pull-requests-limit). Please verify that this configuration change is intentional, or consider adding equivalent scheduling details for predictable update times.
interval: "monthly"
.github/dependabot.yml:11
- As with the gomod section, switching to a monthly interval here omits the explicit scheduling details previously specified. Confirm that this change meets the intended update cadence or add appropriate scheduling parameters if needed.
interval: "monthly"
return &syntax.FileOptions{ | ||
8000 | // resolver | |
Set: false, | ||
While: false, | ||
TopLevelControl: false, | ||
GlobalReassign: false, | ||
LoadBindsGlobally: false, | ||
// compiler | ||
Recursion: true, | ||
} |
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.
The latest version of starlark requires explicit options instead of legacy global options.
The configurations here should work for most of the cases.
No description provided.