Skip to content

Can we get logs for two instances of MSDO in the same workflow #10

Can we get logs for two instances of MSDO in the same workflow

Can we get logs for two instances of MSDO in the same workflow #10

# pull request action verification
name: MSDO On Push Verification
on:
push:
branches:
- '*'
permissions:
security-events: write
jobs:
sample:
name: MSDO on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
# Checkout your code repository to scan
- uses: actions/checkout@v3
# Run analyzers
- name: Run Microsoft Security DevOps Analysis
uses: ./
id: msdo
# Upload alerts to the Security tab
- name: Upload alerts to Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.msdo.outputs.sarifFile }}
# Upload alerts file as a workflow artifact
- name: Upload alerts file as a workflow artifact
uses: actions/upload-artifact@v3
with:
name: alerts
path: ${{ steps.msdo.outputs.sarifFile }}