-
Notifications
You must be signed in to change notification settings - Fork 0
⬆️ modernized #7
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
Caution Review failedThe pull request is closed. WalkthroughThis update upgrades dependencies, Docker images, and test environments to newer versions, removes the Microsoft.SourceLink.GitHub package, modularizes the GitHub Actions workflow by delegating jobs to reusable workflows, updates the copyright year, and adds a DocFx documentation link to the README. Changes
Sequence Diagram(s)sequenceDiagram
participant GitHub Actions
participant Reusable Workflows
participant External Services
GitHub Actions->>Reusable Workflows: call codebeltnet/jobs-dotnet-build
GitHub Actions->>Reusable Workflows: call codebeltnet/jobs-dotnet-pack
GitHub Actions->>Reusable Workflows: call codebeltnet/jobs-dotnet-test
GitHub Actions->>Reusable Workflows: call codebeltnet/jobs-sonarcloud
GitHub Actions->>Reusable Workflows: call codebeltnet/jobs-codecov
GitHub Actions->>Reusable Workflows: call codebeltnet/jobs-codeql
GitHub Actions->>Reusable Workflows: call codebeltnet/jobs-nuget-push
Reusable Workflows->>External Services: Interact with build, test, analysis, and deployment services
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (8)
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
This pull request includes multiple changes focused on upgrading dependencies, simplifying workflows, and updating documentation. The most important changes include upgrading Docker images and dependencies, refactoring GitHub Actions workflows, and improving project documentation.
Dependency Upgrades:
.docfx/Dockerfile.docfx
tonginx:1.27.5-alpine
and thecodebeltnet/docfx
image to version2.78.3
for compatibility and security improvements.Directory.Packages.props
, includingCodebelt.Extensions.Xunit.App
to10.0.1
andMicrosoft.NET.Test.Sdk
to17.14.0
. RemovedMicrosoft.SourceLink.GitHub
fromDirectory.Build.props
. [1] [2]Workflow Refactoring:
.github/workflows/pipelines.yml
to use reusable workflows (jobs-dotnet-build
,jobs-dotnet-pack
, etc.) for improved maintainability and reduced duplication. Updated test matrix to includeUbuntu-24.04
.Documentation Updates:
README.md
.testenvironments.json
to useUbuntu-24.04
for WSL and a newer Docker image version for testing.Miscellaneous:
LICENSE
from 2024 to 2025..nuget/ClassLibrary1/PackageReleaseNotes.txt
mentioning upgraded dependencies for all supported target frameworks.Summary by CodeRabbit
New Features
Bug Fixes
Chores
Documentation