Skip to content

chore(deps-dev): bump tar from 7.5.2 to 7.5.6 #785

chore(deps-dev): bump tar from 7.5.2 to 7.5.6

chore(deps-dev): bump tar from 7.5.2 to 7.5.6 #785

Workflow file for this run

name: OSSAR
# Define the events that trigger this workflow
on:
push:
branches: ["main"] # Trigger on push to the "main" branch
pull_request:
branches: ["main"] # Trigger on pull request to the "main" branch
schedule:
- cron: "41 10 * * 1" # Trigger on a schedule every Monday at 10:41 AM UTC
# Define permissions required for the workflow
permissions:
contents: read # Required to fetch code using actions/checkout
concurrency:
group: ossar-${{ github.ref }}
cancel-in-progress: false
jobs:
OSSAR-Scan:
# Define permissions for the OSSAR-Scan job
permissions:
contents: read # Required for actions/checkout to fetch code
security-events: write # Required for github/codeql-action/upload-sarif to upload SARIF results
actions: read # Only required for private repositories to get the Action run status
# Specify the runner to use (windows-latest)
runs-on: windows-latest
steps:
# Step to harden the runner for security purposes
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
# Step to checkout the repository
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
# Ensure a compatible version of dotnet is installed.
# The [Microsoft Security Code Analysis CLI](https://aka.ms/mscadocs) is built with dotnet v3.1.201.
# A version greater than or equal to v3.1.201 of dotnet must be installed on the agent in order to run this action.
# GitHub hosted runners already have a compatible version of dotnet installed and this step may be skipped.
# For self-hosted runners, ensure dotnet version 3.1.201 or later is installed by including this action:
# - name: Install .NET
# uses: actions/setup-dotnet@v2
# with:
# dotnet-version: '3.1.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@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
with:
sarif_file: ${{ steps.ossar.outputs.sarifFile }}