Quellcode durchsuchen

analysis.yml

pull/232/head
Santiago De Jesus Villalobos-Gonzalez vor 2 Jahren
committed by GitHub
Ursprung
Commit
0d959632d1
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: 4AEE18F83AFDEB23
1 geänderte Dateien mit 34 neuen und 0 gelöschten Zeilen
  1. +34
    -0
      .github/workflows/devskim-analysis.yml

+ 34
- 0
.github/workflows/devskim-analysis.yml Datei anzeigen

@@ -0,0 +1,34 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: DevSkim

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '27 11 * * 1'

jobs:
lint:
name: DevSkim
runs-on: ubuntu-20.04
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Run DevSkim scanner
uses: microsoft/DevSkim-Action@v1
- name: Upload DevSkim scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: devskim-results.sarif

Laden…
Abbrechen
Speichern