Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/self-hosted-validation-v1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: MSDO v1 self-hosted validation
on: push

permissions:
id-token: write
security-events: write

jobs:
msdo-scan:
name: MSDO v1 - Security Scan

runs-on: self-hosted

steps:

# Checkout your code repository to scan
- uses: actions/checkout@v6

# Run MSDO v1
- name: Run MSDO
uses: ./
id: msdo

# Upload results to the Security tab
- name: Upload results to Security tab
uses: github/codeql-action/upload-sarif@v3
if: always()
with:
sarif_file: ${{ steps.msdo.outputs.sarifFile }}
Loading
Loading