File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
12# This workflow uses actions that are not certified by GitHub.
23# They are provided by a third-party and are governed by
34# separate terms of service, privacy policy, and support
Original file line number Diff line number Diff line change 1+ ---
2+ # This workflow uses actions that are not certified by GitHub.
3+ # They are provided by a third-party and are governed by
4+ # separate terms of service, privacy policy, and support
5+ # documentation.
6+
7+ name : MSDO
8+
9+ on :
10+ push :
11+ branches : ["main"]
12+ pull_request :
13+ branches : ["main"]
14+ schedule :
15+ - cron : " 0 0 * * 0"
16+
17+ permissions : {}
18+
19+ jobs :
20+ lint :
21+ name : MSDO
22+ runs-on : ubuntu-latest
23+ permissions :
24+ security-events : write
25+ steps :
26+ - name : Checkout code
27+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
29+ - name : Run Microsoft Security DevOps scanner
30+ uses : microsoft/security-devops-action@08976cb623803b1b36d7112d4ff9f59eae704de0 # v1.12.0
31+ id : msdo
32+
33+ - name : Upload MSDO scan results to GitHub Security tab
34+ uses : github/codeql-action/upload-sarif@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
35+ with :
36+ sarif_file : ${{ steps.msdo.outputs.sarifFile }}
You can’t perform that action at this time.
0 commit comments