File tree 1 file changed +11
-18
lines changed
1 file changed +11
-18
lines changed Original file line number Diff line number Diff line change 10
10
- cron : ' 0 4 * * *'
11
11
12
12
permissions :
13
- actions : write # Needed for skip-duplicate-jobs job
14
13
contents : read
15
14
16
15
jobs :
17
- # Special job which automatically cancels old runs for the same branch, prevents runs for the
18
- # same file set which has already passed, etc.
19
- pre_job :
20
- name : Skip Duplicate Jobs Pre Job
21
- runs-on : ubuntu-latest
22
- outputs :
23
- should_skip : ${{ steps.skip_check.outputs.should_skip }}
24
- steps :
25
- - id : skip_check
26
- uses : fkirc/skip-duplicate-actions@12aca0a884f6137d619d6a8a09fcc3406ced5281 # v5.3.0
27
- with :
28
- cancel_others : ' true'
29
- github_token : ${{ github.token }}
30
-
31
16
TruffleHog :
32
17
runs-on : ubuntu-latest
33
- needs : pre_job
34
- if : ${{ needs.pre_job.outputs.should_skip != 'true' || github.ref_name == 'master' }}
35
18
36
19
steps :
37
20
- name : Checkout code
38
21
uses : actions/checkout@v3
39
22
with :
40
23
fetch-depth : 0
41
24
25
+ # Special check which ensures that the clone performed above is not shallow. We need the
26
+ # complete git history for scanning to work correctly in all the situations. In some cases
27
+ # if a shallow clone is used, trufflehog won't not fail with an error, but it would simply
28
+ # not detect any files and that could be dangerous.
29
+ - name : Shallow repo check
30
+ run : |
31
+ if git rev-parse --is-shallow-repository | grep -q "true"; then
32
+ echo "Encountered a shallow repository, trufflehog may not work as expected!"
33
+ exit 1
34
+ fi
35
+
42
36
- name : scan-pr
43
37
uses : trufflesecurity/trufflehog@main
44
38
if : ${{ github.event_name == 'pull_request' }}
47
41
base : ${{ github.event.repository.default_branch }}
48
42
head : HEAD
49
43
extra_args : --debug --only-verified
50
- --exclude-paths=${{ inputs.exclude-paths }}
51
44
52
45
- name : scan-push
53
46
uses : trufflesecurity/trufflehog@main
You can’t perform that action at this time.
0 commit comments