Use build-mode: none for Monorepo #16582
-
I am attempting to use the
So my question is: is there a way to get this to work? Perhaps with some include paths or something like that or is this a strict situation were Java + TS, JS, etc. is detected the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
Would to be possible for you to share the logs (possibly partially anonymised, because they may contain sensitive information)? Without those it's difficult to tell what is going on. If the above if not possible here, running CodeQL on a private repo likely means you're a paying customer, in which case you can also file a support ticket, which offers more privacy. See here: https://docs.github.com/en/support/contacting-github-support/creating-a-support-ticket |
Beta Was this translation helpful? Give feedback.
I see the problem now. You're right that installing a JDK on your runner fixes the issue. CodeQL looks for the best suitable JDK version it can find, if no good match is found it falls back on whatever
java
is installed on thePATH
, and if even that doesn't exist it should fall back on its own internal minimal JDK. Unfortunately, there was a mistake in the path of the internal JDK so things failed. Thanks for reporting!