Soenneker.GitHub.Repositories.Security 4.0.155

Prefix Reserved
dotnet add package Soenneker.GitHub.Repositories.Security --version 4.0.155
                    
NuGet\Install-Package Soenneker.GitHub.Repositories.Security -Version 4.0.155
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.GitHub.Repositories.Security" Version="4.0.155" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.GitHub.Repositories.Security" Version="4.0.155" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.GitHub.Repositories.Security" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.GitHub.Repositories.Security --version 4.0.155
                    
#r "nuget: Soenneker.GitHub.Repositories.Security, 4.0.155"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.GitHub.Repositories.Security@4.0.155
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.GitHub.Repositories.Security&version=4.0.155
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.GitHub.Repositories.Security&version=4.0.155
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.GitHub.Repositories.Security

Retrieve and log open Dependabot, code-scanning, and secret-scanning alerts for one repository or every repository owned by an account.

Installation

dotnet add package Soenneker.GitHub.Repositories.Security

Configuration

{
  "GH": {
    "Token": "github-token"
  }
}

The token needs read access to each security-alert feature being queried. GitHub may deny a feature when it is disabled for the repository or unavailable to the account.

Registration

services.AddGitHubRepositoriesSecurityUtilAsSingleton();

Use AddGitHubRepositoriesSecurityUtilAsScoped() for a scoped consumer.

Retrieve alerts

List<DependabotAlert> dependabot = await security.GetDependabotAlerts(
    "soenneker",
    "example-repository",
    cancellationToken: cancellationToken);

List<CodeScanningAlertItems> codeScanning = await security.GetCodeScanningAlerts(
    "soenneker",
    "example-repository",
    cancellationToken);

List<SecretScanningAlert> secretScanning = await security.GetSecretScanningAlerts(
    "soenneker",
    "example-repository",
    cancellationToken: cancellationToken);

Code-scanning and secret-scanning retrieval follows pagination. Dependabot retrieval requests GitHub's maximum page size of 100 alerts. Dependabot and secret-scanning methods default to open alerts; pass state: null for all states, or state: "resolved" for resolved secret-scanning alerts. Code scanning currently returns open alerts.

Log alert summaries

await security.LogAllSecurityAlerts(
    "soenneker",
    "example-repository",
    cancellationToken);

await security.LogAllSecurityAlertsForAllRepos(
    "soenneker",
    cancellationToken: cancellationToken);

Logging methods write alert summaries through ILogger. If a security feature is disabled or inaccessible, that feature is skipped and the API error is written at debug level; requested cancellation still stops the scan.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Soenneker.GitHub.Repositories.Security:

Package Downloads
Soenneker.GitHub.Repositories.Suite

Registers commonly used Soenneker GitHub repository services through one package

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.155 0 9/13/2026
4.0.154 10 9/12/2026
4.0.153 34 9/12/2026
4.0.152 68 9/12/2026
4.0.151 98 9/11/2026
4.0.150 101 9/10/2026
4.0.149 77 9/10/2026
4.0.148 41 9/9/2026
4.0.147 42 9/9/2026
4.0.146 149 9/9/2026
4.0.145 72 9/8/2026
4.0.144 83 9/8/2026
4.0.143 71 9/8/2026
4.0.142 190 9/8/2026
4.0.141 132 9/7/2026
4.0.139 222 9/6/2026
4.0.138 111 9/5/2026
4.0.137 169 9/5/2026
4.0.136 138 9/4/2026
4.0.135 156 9/4/2026
Loading failed