Skip to content

feat: dsp dcp tck update #4144

feat: dsp dcp tck update

feat: dsp dcp tck update #4144

Workflow file for this run

#################################################################################
# Copyright (c) 2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-2.0
#################################################################################
name: "Secrets scan (TruffleHog)"
on:
push:
branches: [ main ]
pull_request:
schedule:
- cron: "0 0 * * *" # Once a day
permissions:
contents: read
jobs:
ScanSecrets:
name: Scan secrets
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
id-token: write
issues: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0 # Ensure full clone for pull request workflows
persist-credentials: false
- name: TruffleHog OSS
id: trufflehog
uses: trufflesecurity/trufflehog@d411fff7b8879a62509f3fa98c07f247ac089a51
continue-on-error: true
with:
path: ./ # Scan the entire repository
base: "${{ github.event.repository.default_branch }}" # Set base branch for comparison (pull requests)
extra_args: --filter-entropy=4 --results=verified,unknown --debug
- name: Scan Results Status
if: steps.trufflehog.outcome == 'failure'
run: exit 1 # Set workflow run to failure if TruffleHog finds secrets