Skip to content

ricado-group/dotnet-library-codeql-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

.NET Library CodeQL Action

A Composite Action that runs CodeQL to Analyze a .NET 8 Library

Inputs

private-nuget-url

Required The URL of the Private NuGet Repository (e.g. https://nuget.pkg.github.com/myname/index.json)

private-nuget-token

Required The Token used for Authentication with the Private NuGet Repository

Example Usage

uses: ricado-group/dotnet-library-codeql-action@v1
with:
  private-nuget-url: 'https://nuget.pkg.github.com/myname/index.json'
  private-nuget-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

Stay Updated with Dependabot

Use Dependabot to update your GitHub Actions by creating a .github/dependabot.yml file:

version: 2
updates:
  # Maintain Dependencies for GitHub Actions
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "daily"