Open efenderbosch-atg opened 5 months ago
Hi,
I was experiencing similar behavior and got it solved by adding a step that handles downloading the dependencies that should be scanned. i.e. something like this:
- name: Preparation for OWASP Dependency check
run: "./gradlew build -x test"
working-directory: ${{ github.workspace }}
Perhaps it helps in your case as well 🙂 .
If I recall it correctly, the provided examples are with maven, but it shows there too that the action requires some pre-step that triggers downloading the dependencies before executing it.
The report is empty. The only dependency it scans is
/github/workspace/gradle/wrapper/gradle-wrapper.jar
. Does it have to happen in the same job as my gradle compile step? I like breaking out separate jobs so that they can be run in parallel.