Skip to content

Trying Phylum once more. #22

Trying Phylum once more.

Trying Phylum once more. #22

Workflow file for this run

#SPDX-License-Identifier: MIT
#Copyright (c) "2023" . The DeepCausality Authors. All Rights Reserved.
# TruffleHog is an open-source SAST (static application security testing) tool
# for detecting secrets in various sources
# https://github.com/trufflesecurity/trufflehog
# https://github.com/marketplace/actions/trufflehog-oss
name: Secret Scan
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
id-token: write
issues: write
pull-requests: write
jobs:
TruffleHog:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: TruffleHog OSS
id: trufflehog
uses: trufflesecurity/trufflehog@main
continue-on-error: true
with:
path: ./
base: "${{ github.event.repository.default_branch }}"
head: HEAD
extra_args: --debug
- name: Scan Results Status
if: steps.trufflehog.outcome == 'failure'
run: exit 1