Skip to content

Commit

Permalink
Create msdo.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
harrykimpel authored Dec 15, 2022
1 parent bf09ed8 commit 0f6b810
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/msdo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: MSDO

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
env:
#container_image: my-image-name:$(date +%s)
container_image: juice-shop:latest
strategy:
matrix:
node-version: [12.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
5.0.x
6.0.x
- name: Run Microsoft Security DevOps
uses: microsoft/security-devops-action@preview
id: msdo
- name: Upload results to Security tab
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.msdo.outputs.sarifFile }}

0 comments on commit 0f6b810

Please sign in to comment.