CodeQL #68
This file contains 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
# Action Name | |
name: "CodeQL" | |
# When the Action will Run | |
on: | |
schedule: | |
- cron: '0 7 * * 5' | |
# Workflow Jobs | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
# Step 1 - Checkout Code | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
# Step 2 - Run CodeQL | |
- name: Run CodeQL | |
uses: ricado-group/dotnet-library-codeql-action@v1 | |
with: | |
private-nuget-url: 'https://nuget.pkg.github.com/ricado-group/index.json' | |
private-nuget-token: ${{ secrets.GH_PACKAGES_PAT }} |