Conversation
…projects. (#2) * Create codeql.yml * Update CodeQL workflow to use .NET 9.0.x Changed the dotnet-version in the CodeQL GitHub Actions workflow from 8.0.x to 9.0.x to align with the project's SDK requirements. * Set fetch-depth to 0 in CodeQL workflow Updated the checkout step in the CodeQL workflow to use 'fetch-depth: 0', ensuring the full git history is available for analysis.
Updated dotnet and sonarqube GitHub Actions workflows to trigger on both main and develop branches for push and pull request events. This ensures CI processes run for changes targeting the develop branch.
The build step in the GitHub Actions workflow now runs 'dotnet build' without the '--no-restore' flag, ensuring dependencies are restored during the build process.
* Remove --no-restore from dotnet build step The build step in the GitHub Actions workflow now runs 'dotnet build' without the '--no-restore' flag, ensuring dependencies are restored during the build process. * Update dotnet.yml
Introduces a dependabot.yml file to enable automated weekly updates for NuGet dependencies in the repository.
|
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.



This pull request introduces several updates to GitHub Actions workflows to enhance CI/CD processes and integrate new tools. The most important changes include adding a new CodeQL workflow for C# analysis, enabling Dependabot for NuGet dependencies, and extending branch coverage in multiple workflows.
New workflows and tools:
.github/workflows/codeql.yml: Added a new CodeQL workflow for C# to analyze code for security vulnerabilities and maintain code quality. This includes steps for repository checkout, .NET setup, project build, and CodeQL analysis..github/workflows/dependabot.yml: Introduced Dependabot configuration to enable weekly updates for NuGet dependencies in the repository.Workflow improvements:
.github/workflows/dotnet.yml: Expanded branch coverage to include thedevelopbranch in addition tomain, ensuring CI/CD processes run for both branches..github/workflows/dotnet.yml: Updated the build step to remove the--no-restoreflag, simplifying the build process..github/workflows/sonarqube.yml: Extended branch coverage to include thedevelopbranch for SonarQube analysis, aligning it with other workflows.