chore(v2): release Monorepo 2.0.0 (#4) #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# @format | |
# ----- | |
# Project: zenstack-monorepo | |
# File: security-ossar.yml | |
# Path: \.github\workflows\security-ossar.yml | |
# Created Date: Monday, February 19th 2024 | |
# Author: Jonathan Stevens, [email protected] | |
# Github: https://github.com/TGTGamer | |
# ----- | |
# Contributing: Please read through our contributing guidelines. | |
# Included are directions for opening issues, coding standards, | |
# and notes on development. These can be found at | |
# https://github.com/zenstack-monorepo/blob/develop/CONTRIBUTING.md | |
# ----- | |
# Code of Conduct: This project abides by the Contributor Covenant, v2.0 | |
# Please interact in ways that contribute to an open, welcoming, diverse, | |
# inclusive, and healthy community. Our Code of Conduct can be found at | |
# https://github.com/zenstack-monorepo/blob/develop/CODE_OF_CONDUCT.md | |
# ----- | |
# Copyright (c) 2024 ZenstackHQ - All Rights Reserved | |
# LICENSE: MIT License (MIT) | |
# ----- | |
# This program has been provided under confidence of the copyright holder and | |
# is licensed for copying, distribution and modification under the terms | |
# of the MIT License (MIT) published as the License, | |
# or (at your option) any later version of this license. | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# MIT License for more details. | |
# You should have received a copy of the MIT License | |
# along with this program. If not, please write to: [email protected], | |
# or see https://opensource.org/licenses/MIT | |
# ----- | |
# DELETING THIS NOTICE AUTOMATICALLY VOIDS YOUR LICENSE | |
### | |
# 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: Security - OSSAR | |
on: | |
merge_group: | |
push: | |
branches: | |
- main | |
- develop | |
- release/* | |
- v2 | |
pull_request: | |
branches: | |
- main | |
- develop | |
- release/* | |
- v2 | |
schedule: | |
- cron: '41 3 * * 5' | |
permissions: | |
contents: read | |
jobs: | |
OSSAR-Scan: | |
runs-on: windows-latest | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | |
with: | |
egress-policy: audit | |
- name: Workflow Telemetry | |
uses: catchpoint/workflow-telemetry-action@6705383eabd01833acfe8412ec697384830e1455 # v1.8.7 | |
with: | |
github_token: ${{ secrets.BOT_TOKEN || github.token }} # Bot Token is a PAT for a automation account. | |
comment_on_pr: false | |
theme: dark | |
proc_trace_sys_enable: true | |
# checks out the repository | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
token: ${{ secrets.BOT_TOKEN || github.token }} # Bot Token is a PAT for a automation account. | |
- uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
with: | |
dotnet-version: | | |
5.0.x | |
6.0.x | |
# Run open source static analysis tools | |
- name: Run OSSAR | |
uses: github/ossar-action@786a16a90ba92b4ae6228fe7382fb16ef5c51000 # v1 | |
id: ossar | |
# Upload results to the Security tab | |
- name: Upload OSSAR results | |
uses: github/codeql-action/upload-sarif@1500a131381b66de0c52ac28abb13cd79f4b7ecc # v2.22.12 | |
with: | |
sarif_file: ${{ steps.ossar.outputs.sarifFile }} |