We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eedc99a commit b573aceCopy full SHA for b573ace
1 file changed
.github/workflows/quality-checks.yml
@@ -155,16 +155,16 @@ jobs:
155
uses: aquasecurity/trivy-action@0.33.1
156
with:
157
scan-type: "fs"
158
- scan-ref: "poetry.lock"
+ scan-ref: "."
159
severity: "CRITICAL,HIGH"
160
scanners: "license"
161
- format: "table"
162
- output: "license_scan.txt"
+ format: "json"
+ output: "license_scan.json"
163
exit-code: "1"
164
list-all-pkgs: "true"
165
- name: Show license scan output
166
if: always()
167
- run: cat license_scan.txt
+ run: cat license_scan.json
168
169
- name: Run code lint
170
run: make lint
0 commit comments