-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chore: Prepare TX 2412 E2E Tests #101
Merged
almadigabor
merged 25 commits into
eclipse-tractusx:main
from
big-data-spaces:feature/2412-release
Oct 18, 2024
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
db036b8
chore(deps): bump docker/metadata-action from 5.0.0 to 5.5.1
dependabot[bot] 23a6fd5
chore(deps): bump org.apache.maven.plugins:maven-jar-plugin
dependabot[bot] fc7aecf
chore(deps): bump junit.version from 5.10.2 to 5.10.3
dependabot[bot] 6e01a9e
chore(deps): bump org.apache.maven.plugins:maven-shade-plugin
dependabot[bot] 27fa94d
chore(deps): bump actions/cache from 4.0.1 to 4.0.2
dependabot[bot] 30ed878
chore(deps): bump org.apache.maven.plugins:maven-checkstyle-plugin
dependabot[bot] 031b6e6
chore(deps): bump actions/setup-python from 5.1.0 to 5.2.0
dependabot[bot] 7c3b3b4
chore(deps): bump actions/checkout from 4.1.1 to 4.2.0
dependabot[bot] 6b6e965
chore(deps): bump org.mockito:mockito-bom from 5.2.0 to 5.14.1
dependabot[bot] c95b39e
chore(deps): bump github/codeql-action from 2.22.6 to 3.26.11
dependabot[bot] 55b1d95
chore: upgrade java reference version.
drcgjung acc4f0c
Merge remote-tracking branch 'origin/dependabot/maven/main/org.mockit…
drcgjung f41f5b8
Merge remote-tracking branch 'origin/dependabot/github_actions/main/a…
drcgjung a26078e
chore: upgrade some versions because of CVEs
drcgjung 217879e
Merge remote-tracking branch 'origin/dependabot/github_actions/main/a…
drcgjung 3096710
Merge remote-tracking branch 'origin/dependabot/maven/main/org.apache…
drcgjung 1948b1d
Merge remote-tracking branch 'origin/dependabot/github_actions/main/a…
drcgjung feb7f86
Merge remote-tracking branch 'origin/dependabot/maven/main/junit.vers…
drcgjung d45eede
Merge remote-tracking branch 'origin/dependabot/maven/main/org.apache…
drcgjung a92ea78
Merge remote-tracking branch 'origin/dependabot/maven/main/org.apache…
drcgjung 90bb43e
Merge remote-tracking branch 'origin/dependabot/github_actions/main/d…
drcgjung 88e14d0
chore: upgrade release/chart version
drcgjung ec40dca
chore: upgrade some versions and deps.
drcgjung 2c1879e
chore: up deps.
drcgjung 505c4f0
chore: add secret scanning workflow.
drcgjung File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: "TruffleHog" | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: ["main"] | ||
schedule: | ||
- cron: "0 0 * * *" # Once a day | ||
workflow_dispatch: | ||
|
||
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@main | ||
Check warning on line 32 in .github/workflows/trufflehog.yml GitHub Actions / Analyze[MEDIUM] Unpinned Actions Full Length Commit SHA
|
||
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 |
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check warning
Code scanning / KICS
Unpinned Actions Full Length Commit SHA Warning