File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 18
18
jobs :
19
19
fossa-scan :
20
20
runs-on : ubuntu-latest
21
+ env :
22
+ FOSSA_API_KEY : b88e1f4287c3108c8751bf106fb46db6
21
23
steps :
22
24
- name : " Checkout code"
23
25
uses : actions/checkout@v3
24
26
25
27
- name : " Run FOSSA Scan"
26
28
uses : fossas/fossa-action@main # Use a specific version if locking is preferred
27
29
with :
28
- api-key : b88e1f4287c3108c8751bf106fb46db6 # This is a PUSH ONLY token that is safe to be shared with the public
30
+ api-key : ${{ env.FOSSA_API_KEY }} # This is a PUSH ONLY token that is safe to be shared with the public
31
+
32
+ - name : " Run FOSSA Test"
33
+ uses : fossas/fossa-action@main # Use a specific version if locking is preferred
34
+ with :
35
+ api-key : ${{ env.FOSSA_API_KEY }}
36
+ run-tests : true
You can’t perform that action at this time.
0 commit comments