mirror of
https://github.com/dzeiocom/components.git
synced 2025-04-24 03:42:11 +00:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
# 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.
|
|
|
|
# This workflow integrates a collection of open source static analysis tools
|
|
# with GitHub code scanning. For documentation, or to provide feedback, visit
|
|
# https://github.com/github/ossar-action
|
|
name: OSSAR
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
OSSAR-Scan:
|
|
# OSSAR runs on windows-latest.
|
|
# ubuntu-latest and macos-latest support coming soon
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
# Run open source static analysis tools
|
|
- name: Run OSSAR
|
|
uses: github/ossar-action@v1
|
|
id: ossar
|
|
|
|
# Upload results to the Security tab
|
|
- name: Upload OSSAR results
|
|
uses: github/codeql-action/upload-sarif@v1
|
|
with:
|
|
sarif_file: ${{ steps.ossar.outputs.sarifFile }}
|