Skip to content

chore(beep boop 🤖): Bump uv.lock (r0.3.0) (2026-02-19)#2448

Closed
svcnvidia-nemo-ci wants to merge 1 commit intor0.3.0from
bump-ci-container-2026-02-19-r0.3.0
Closed

chore(beep boop 🤖): Bump uv.lock (r0.3.0) (2026-02-19)#2448
svcnvidia-nemo-ci wants to merge 1 commit intor0.3.0from
bump-ci-container-2026-02-19-r0.3.0

Conversation

@svcnvidia-nemo-ci
Copy link
Contributor

@svcnvidia-nemo-ci svcnvidia-nemo-ci commented Feb 19, 2026

🚀 PR to bump uv.lock in r0.3.0.

🤖 This PR will be merged automatically once CI passes.

Summary by CodeRabbit

  • Chores
    • Updated third-party dependency

Note: This release contains no user-facing changes or new features.

Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
@svcnvidia-nemo-ci
Copy link
Contributor Author

/ok to test a4d3612

@copy-pr-bot
Copy link

copy-pr-bot bot commented Feb 19, 2026

This pull request requires additional validation before any workflows can run on NVIDIA's runners.

Pull request vetters can view their responsibilities here.

Contributors can view more details about this message here.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Feb 19, 2026

📝 Walkthrough

Walkthrough

The git submodule pointer for 3rdparty/Megatron-LM is updated to a newer commit. This is a submodule reference update with no public API or code changes affecting the codebase.

Changes

Cohort / File(s) Summary
Megatron-LM Submodule Update
.gitmodules
Submodule pointer advanced to commit 955aff043676ecab128a103b9827935b0e245972 from 082fa76a89a376c049a8998f82d87cae2bea5009

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested reviewers

  • ananthsub
  • maanug-nv
  • chtruong814
🚥 Pre-merge checks | ✅ 3 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Title check ⚠️ Warning The title mentions bumping uv.lock but the actual change is updating a Megatron-LM submodule pointer; the title is misleading about the primary change. Update the title to accurately reflect the main change, such as 'chore: Bump Megatron-LM submodule to 955aff04' or similar.
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Test Results For Major Changes ✅ Passed PR contains only minor changes: dependency lock file bump and submodule pointer update with no functional code modifications.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch bump-ci-container-2026-02-19-r0.3.0

Tip

Issue Planner is now in beta. Read the docs and try it out! Share your feedback on Discord.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@3rdparty/Megatron-LM`:
- Line 1: Add the new Git submodule for 3rdparty/Megatron-LM by
creating/updating the .gitmodules entry and the index so the repository tracks
path "3rdparty/Megatron-LM" at commit
"955aff043676ecab128a103b9827935b0e245972"; run the proper git submodule add (or
git submodule init/update with the URL) and ensure the submodule reference is
committed (so CI can validate upstream compatibility), and verify the
.gitmodules contains the correct path and URL and that the gitlink in the main
repo points to the specified SHA.

@@ -1 +1 @@
Subproject commit 082fa76a89a376c049a8998f82d87cae2bea5009
Subproject commit 955aff043676ecab128a103b9827935b0e245972
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

# Check if 3rdparty/Megatron-LM is a submodule
if [ -f .gitmodules ]; then
  cat .gitmodules
else
  echo ".gitmodules not found"
fi

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 183


🏁 Script executed:

# List the 3rdparty directory structure
ls -la 3rdparty/ 2>/dev/null | head -20

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 242


🏁 Script executed:

# Check the exact content/state of the submodule pointer
if [ -d 3rdparty/Megatron-LM ]; then
  cd 3rdparty/Megatron-LM && git rev-parse HEAD 2>/dev/null || echo "Not a git repo or not initialized"
else
  echo "Directory does not exist or not initialized"
fi

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 111


🏁 Script executed:

# Show the git diff for the 3rdparty/Megatron-LM submodule pointer
git diff HEAD 3rdparty/Megatron-LM 2>/dev/null || echo "No unstaged changes"

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 53


🏁 Script executed:

# Show git status
git status 3rdparty/Megatron-LM

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 136


🏁 Script executed:

# Check the git log to see recent changes to the submodule pointer
git log --oneline -10 -- 3rdparty/Megatron-LM

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 136


🏁 Script executed:

# Get more detail on the last commit that touched the submodule
git show --stat HEAD -- 3rdparty/Megatron-LM 2>/dev/null | head -30

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 430


🏁 Script executed:

# Show the actual submodule pointer change in the commit
git show a4d3612:3rdparty/Megatron-LM

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 244


🏁 Script executed:

# Show what the previous commit had
git show a4d3612^:3rdparty/Megatron-LM

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 111


🏁 Script executed:

# Full diff of this commit for the submodule
git show --format="" a4d3612 -- 3rdparty/Megatron-LM

Repository: NVIDIA-NeMo/Megatron-Bridge

Length of output: 286


Add initial submodule reference — LGTM with clarification.

This commit adds 3rdparty/Megatron-LM as a new submodule pointing to commit 955aff043676ecab128a103b9827935b0e245972. No code changes in this repository. CI is the appropriate gate for upstream compatibility.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@3rdparty/Megatron-LM` at line 1, Add the new Git submodule for
3rdparty/Megatron-LM by creating/updating the .gitmodules entry and the index so
the repository tracks path "3rdparty/Megatron-LM" at commit
"955aff043676ecab128a103b9827935b0e245972"; run the proper git submodule add (or
git submodule init/update with the URL) and ensure the submodule reference is
committed (so CI can validate upstream compatibility), and verify the
.gitmodules contains the correct path and URL and that the gitlink in the main
repo points to the specified SHA.

@ko3n1g ko3n1g closed this Feb 19, 2026
@ko3n1g ko3n1g deleted the bump-ci-container-2026-02-19-r0.3.0 branch February 19, 2026 23:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants