Skip to content

Commit

Permalink
Merge pull request octodemo-forks#7 from octodemo/NickLiffen-patch-2
Browse files Browse the repository at this point in the history
Adding a SAST Tool to Provide More Context on the Application :)
  • Loading branch information
NickLiffen authored Jun 30, 2023
2 parents ec7de98 + 9285964 commit dc69021
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/devskim.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "devskim"

on:
push:
branches: [ "develop", "main" ]
pull_request:
branches: [ "develop", "main" ]
schedule:
- cron: '23 22 * * 0'


jobs:
devskimanalyze:
name: Devskim Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: microsoft/DevSkim-Action@v1
- uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: devskim-results.sarif

0 comments on commit dc69021

Please sign in to comment.