We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9a205e commit 527d969Copy full SHA for 527d969
.github/workflows/fossa.yaml
@@ -13,7 +13,18 @@ jobs:
13
fossa-scan:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: actions/checkout@v2
17
- - uses: fossas/fossa-action@v1
+ - uses: actions/checkout@v4
+
18
+ - name: FOSSA Scan
19
+ uses: fossas/fossa-action@v1
20
with:
21
api-key: ${{ secrets.FOSSA_API_KEY }}
22
23
+ - name: FOSSA Test
24
25
+ id: fossa-test
26
+ if: ${{ github.event_name == 'pull_request' }}
27
+ with:
28
+ api-key: ${{ secrets.FOSSA_PR_REPORT_API_KEY }}
29
+ run-tests: true
30
+ test-diff-revision: ${{ github.event.pull_request.base.sha }}
0 commit comments