Consolidate dependency updates and Dependabot grouping - #54
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR consolidates several dependency updates (GitHub Actions + .NET test tooling) and adds Dependabot grouping to reduce update PR churn while keeping related components (notably CodeQL) aligned to a single revision.
Changes:
- Bumps CodeQL workflow steps (init/autobuild/analyze) to the same pinned revision to prevent mixed-version failures.
- Updates TruffleHog action wrapper pin and aligns the explicitly pinned TruffleHog scanner version to
3.95.8. - Updates test tooling (
Microsoft.NET.Test.Sdkto18.7.0) and enablesXPlat Code Coveragecollection in CI; adds Dependabot groups for minor/patch updates.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
tests/Bbt.Core.Tests/Bbt.Core.Tests.csproj |
Updates Microsoft.NET.Test.Sdk to 18.7.0 for the test project. |
.github/workflows/trufflehog.yml |
Updates the TruffleHog action pin and scanner version to 3.95.8. |
.github/workflows/codeql.yml |
Pins CodeQL init/autobuild/analyze to the same updated revision. |
.github/workflows/ci.yml |
Enables XPlat Code Coverage collection during dotnet test in CI. |
.github/dependabot.yml |
Adds grouping rules for CodeQL and minor/patch GitHub Actions + .NET tooling updates. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced Jul 9, 2026
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.
What changed
Why
Dependabot opened separate CodeQL component PRs that fail when mixed versions run together. The TruffleHog wrapper PR also left the explicitly pinned scanner on 3.93.3. Grouping compatible low-risk updates reduces PR volume while keeping major and security updates individually reviewable.
Supersedes #41, #44, #50, #51, #52, and #53.
Validation