This repository was archived by the owner on Apr 7, 2026. It is now read-only.
Deprecating LogAnalytics.Client in favor of official replacements ahe… #21
This file contains hidden or 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
| name: MSDefenderDevOps | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| DevSec: | |
| name: Microsoft Defender for DevOps | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 6.0.100 | |
| - uses: actions/checkout@v2.4.0 | |
| - run: dotnet build | |
| working-directory: LogAnalytics.Client/LogAnalytics.Client | |
| - name: Run Microsoft Security DevOps Analysis | |
| uses: microsoft/security-devops-action@preview | |
| id: msdo | |
| - name: Upload alerts to Security tab | |
| uses: github/codeql-action/upload-sarif@v1 | |
| with: | |
| sarif_file: ${{ steps.msdo.outputs.sarifFile }} |