Skip to content

chore(deps): update dependency dotnet-sdk to v10 - #6803

Merged
thomhurst merged 1 commit into
mainfrom
renovate/dotnet-sdk-10.x
Sep 14, 2026
Merged

thomhurst merged 1 commit into
mainfrom
renovate/dotnet-sdk-10.x

Conversation

@thomhurst

@thomhurst thomhurst commented Sep 14, 2026

Copy link
Copy Markdown
Owner

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
dotnet-sdk uses-with major 9.0.x10.0.401
dotnet-sdk uses-with major 8.0.x10.0.401

Release Notes

dotnet/sdk (dotnet-sdk)

v10.0.401: .NET 10.0.12

Compare Source

Release

What's Changed

Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

@thomhurst thomhurst added dependencies Pull requests that update a dependency file MAJOR renovate-bot labels Sep 14, 2026
@thomhurst
thomhurst enabled auto-merge (squash) September 14, 2026 08:47
@thomhurst
thomhurst deployed to Pull Requests September 14, 2026 08:47 — with GitHub Actions Active
@thomhurst
thomhurst deployed to Pull Requests September 14, 2026 08:47 — with GitHub Actions Active
@chatgpt-codex-connector

chatgpt-codex-connector Bot commented Sep 14, 2026

Copy link
Copy Markdown

Codex Review Summary

This comment shows the latest Codex review activity on this pull request.

Review Status Commit Review trigger
📝 Code Review Completed 2026-09-14T14:21:56.334002Z 9a6ec67 New commits
ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review" or "@codex security review".

Codex reacts with 👀 while any review is running, comments if it has suggestions, and reacts with 👍 once all reviews finish with no findings.

@coderabbitai

coderabbitai Bot commented Sep 14, 2026

Copy link
Copy Markdown

Review Change StackReview Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Advanced

Run ID: f961da4b-07e0-455b-aa04-b827afe1502f

📥 Commits

Reviewing files that changed from the base of the PR and between 9ef8ddc and 1d4a29f.

📒 Files selected for processing (2)
  • .github/workflows/codeql.yml
  • .github/workflows/dotnet-build-different-locale.yml

Included review availability: Your plan provides up to 8 included reviews per hour; 7 remain after this review.


📝 Walkthrough

Walkthrough

The CodeQL and locale build workflows now install .NET SDK 10.0.401 instead of their previous .NET version ranges.

Changes

.NET SDK workflow updates

Layer / File(s) Summary
Pin workflow SDK versions
.github/workflows/codeql.yml, .github/workflows/dotnet-build-different-locale.yml
The workflows now use .NET SDK 10.0.401 for their setup steps.

Priority: ⬇️ Low

Estimated code review effort: 1 (Trivial) | ~5 minutes

Change: Other

Merge Risk: ⚪ Minimal · up to 9a6ec

The workflows now consistently select the repository’s required .NET SDK version, with no remaining merge-blocking risk identified.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check. Docstring coverage is scoped to functions touched by this diff. Analyzed 0 functions across 0…
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely describes the main change: updating the dotnet-sdk dependency to version 10 in GitHub Actions workflows.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/dotnet-sdk-10.x

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

A rabbit reads each line,
The patch grows clear beneath the moon,
Small changes hop in place,
Tests guard the garden path,
Reviews bloom before the dawn.

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

@greptile-apps

greptile-apps Bot commented Sep 14, 2026

Copy link
Copy Markdown

Greptile Summary

This PR updates the .NET SDK installed by two GitHub Actions workflows to 10.0.401.

  • The CodeQL workflow now installs .NET 10 while retaining a “Setup .NET 9” label.
  • The locale-build workflow now installs .NET 10 in all three SDK setup steps.
  • No new actionable issue was introduced since the previous review.

Confidence Score: 5/5

The PR appears safe to merge, although the two previously reported non-blocking workflow-maintenance issues remain unresolved.

No new actionable failure was found. The locale workflow still performs three consecutive .NET 10 setup steps under distinct version labels, and the CodeQL workflow still labels its .NET 10 installation as “Setup .NET 9”; both outstanding previous findings are non-blocking maintenance concerns.

Files Needing Attention: .github/workflows/codeql.yml, .github/workflows/dotnet-build-different-locale.yml

Important Files Changed

Filename Overview
.github/workflows/codeql.yml Updates the configured SDK to 10.0.401; the previously reported inaccurate step label remains.
.github/workflows/dotnet-build-different-locale.yml Updates the former .NET 8 and .NET 9 setup steps to 10.0.401; the previously reported duplicate setup steps remain.

Reviews (2): Last reviewed commit: "chore(deps): update dependency dotnet-sd..." | Re-trigger Greptile

Comment on lines +27 to +32
dotnet-version: 10.0.401

- name: Setup .NET 9
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.401

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Duplicate SDK Setup Steps

The steps labeled “Setup .NET 8” and “Setup .NET 9” now both install .NET 10 immediately before another .NET 10 setup step. Because the workflow performs only one multi-targeted build, these duplicate actions do not exercise the older SDKs or provide independent coverage. They also add unnecessary CI setup work and make the tested environment misleading. Restore the distinct versions if this coverage is intentional, or consolidate the steps and update their names.

uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.401

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Incorrect SDK Step Label

This step now installs .NET 10, but its name still says “Setup .NET 9.” Workflow logs therefore identify the wrong SDK, which can confuse future debugging and maintenance. Rename the step to match the configured SDK version.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

@thomhurst
thomhurst force-pushed the renovate/dotnet-sdk-10.x branch from 1d4a29f to 9a6ec67 Compare September 14, 2026 14:18
@thomhurst
thomhurst deployed to Pull Requests September 14, 2026 14:18 — with GitHub Actions Active
@thomhurst
thomhurst deployed to Pull Requests September 14, 2026 14:18 — with GitHub Actions Active
@thomhurst
thomhurst deployed to Pull Requests September 14, 2026 14:18 — with GitHub Actions Active
@thomhurst
thomhurst merged commit 9bf8e5a into main Sep 14, 2026
14 checks passed
@thomhurst
thomhurst deleted the renovate/dotnet-sdk-10.x branch September 14, 2026 15:14
This was referenced Sep 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file MAJOR renovate-bot

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants