Skip to content

Commit

Permalink
chore: upgrade security scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
buehler committed May 15, 2024
1 parent af36e6e commit 011afcd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/security-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
name: Code Security Testing

on:
push:
branches:
- main
pull_request:
branches:
- main
- release
schedule:
- cron: "0 20 * * 5"

permissions:
security-events: write

concurrency:
group: security-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -21,7 +26,7 @@ jobs:
- uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: csharp

Expand All @@ -34,4 +39,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 011afcd

Please sign in to comment.