-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
* chore: Add TruffleHog secrets scan to repository Signed-off-by: Lars Geyer-Blaumeiser <[email protected]> * chore: Remove license verification in favor of dash tool Signed-off-by: Lars Geyer-Blaumeiser <[email protected]> * chore: Add dash oss scan workflow Signed-off-by: Lars Geyer-Blaumeiser <[email protected]> --------- Signed-off-by: Lars Geyer-Blaumeiser <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
################################################################################# | ||
# 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: "3rd Party dependency check (Eclipse Dash)" | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
check-dependencies: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup-java | ||
|
||
- name: generate dependency list | ||
run: | | ||
./gradlew allDependencies | grep -Poh "(?<=\s)[\w.-]+:[\w.-]+:[^:\s\[\]]+" | sort | uniq > dependency-list | ||
cat dependency-list | ||
- name: Run dash | ||
id: run-dash | ||
uses: eclipse-tractusx/sig-infra/.github/actions/run-dash@main | ||
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
Check warning on line 49 in .github/workflows/dash-scan.yml GitHub Actions / Analyze[LOW] Unpinned Actions Full Length Commit SHA
|
||
with: | ||
dash_input: dependency-list | ||
dependencies_file: DEPENDENCIES | ||
fail_on_out_of_date: true | ||
fail_on_rejected: true | ||
fail_on_restricted: false | ||
|
||
- name: print generated file | ||
if: failure() | ||
run: | | ||
echo "=== Please copy the following content back to DEPENDENCIES ===" | ||
cat DEPENDENCIES | ||
echo "=== end of content ===" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
################################################################################# | ||
# 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: "15 0 * * *" # Once a day | ||
|
||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
id-token: write | ||
issues: write | ||
|
||
jobs: | ||
ScanSecrets: | ||
name: Scan secrets | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Ensure full clone for pull request workflows | ||
|
||
- name: TruffleHog OSS | ||
id: trufflehog | ||
uses: trufflesecurity/trufflehog@7e78ca385fb82c19568c7a4b341c97d57d9aa5e1 | ||
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 |