Skip to content

Commit

Permalink
Remove QL scan deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalBrylka committed Aug 8, 2024
1 parent 2073368 commit 3c529f4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
branches: [ main ]
schedule:
- cron: '40 16 * * 0'
push:
branches: [ main ]

run-name: "QL"

Expand All @@ -17,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
language: [ 'csharp' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed

steps:
Expand All @@ -26,7 +28,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

Expand All @@ -36,4 +38,4 @@ jobs:
- run: dotnet build --configuration Release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

0 comments on commit 3c529f4

Please sign in to comment.