[ci] Recompile dependency lock files on dependabot PRs - #65056
Open
elliot-barn wants to merge 1 commit into
Open
[ci] Recompile dependency lock files on dependabot PRs#65056elliot-barn wants to merge 1 commit into
elliot-barn wants to merge 1 commit into
Conversation
Dependabot bumps pins in python/requirements/** but cannot run the lock file compilation that CI validates, so its PRs fail the pip_compile_dependencies and raydepsets_compile_all_dependencies jobs until someone regenerates the locks by hand. Add a GitHub Actions workflow that triggers on pushes to dependabot/pip/** branches, reruns both compilation steps (ci.sh compile_pip_dependencies and raydepsets build --all-configs), and pushes the regenerated lock files back onto the PR branch. Both steps were verified to reproduce the committed lock files byte-for-byte on a plain ubuntu host (the environment GitHub runners provide): raydepsets --check passes using the bazel-provisioned uv, and compile_pip_dependencies in a py3.11 venv produces no diff. The follow-up push uses the workflow GITHUB_TOKEN, which cannot trigger new Actions runs (no loop) but still fires the webhooks that trigger Buildkite CI. The [dependabot skip] commit trailer lets dependabot rebase over the bot commit. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: elliot-barn <elliot.barnwell@anyscale.com>
Contributor
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
sai-miduthuri
approved these changes
Jul 28, 2026
elliot-barn
enabled auto-merge (squash)
July 28, 2026 20:54
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Dependabot bumps pins in python/requirements/** but cannot run the lock file compilation that CI validates, so its PRs fail the pip_compile_dependencies and raydepsets_compile_all_dependencies jobs until someone regenerates the locks by hand.
Add a GitHub Actions workflow that triggers on pushes to dependabot/pip/** branches, reruns both compilation steps (ci.sh compile_pip_dependencies and raydepsets build --all-configs), and pushes the regenerated lock files back onto the PR branch.
Both steps were verified to reproduce the committed lock files byte-for-byte on a plain ubuntu host (the environment GitHub runners provide): raydepsets --check passes using the bazel-provisioned uv, and compile_pip_dependencies in a py3.11 venv produces no diff.
The follow-up push uses the workflow GITHUB_TOKEN, which cannot trigger new Actions runs (no loop) but still fires the webhooks that trigger Buildkite CI. The [dependabot skip] commit trailer lets dependabot rebase over the bot commit.