feat(universal-router-sdk): bump sdk-core 6.11 and v2-sdk 4.8.0 and v3-sdk 3.20.0 and v4-sdk 1.13.0 and router-sdk 1.16.0 #557
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
name: Trufflehog | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
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@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
with: | |
fetch-depth: 0 | |
- name: TruffleHog OSS | |
id: trufflehog | |
uses: trufflesecurity/trufflehog@b0fd951652a50ffb1911073f0bfb6a8ade7afc37 | |
continue-on-error: true | |
with: | |
path: ./ | |
base: "${{ github.event.repository.default_branch }}" | |
head: HEAD | |
extra_args: --debug --only-verified | |
- name: Scan Results Status | |
if: steps.trufflehog.outcome == 'failure' | |
run: exit 1 |