Arthur Baars
Arthur Baars
Thanks for reporting. Could you attach the log output to this issue? What is roughly the size of the code base you are trying to analyse?
> Is there a corresponding PR that fixes some of these problems? If not I'd love to try to fix some of these issues. I think the majority is not...
@dumblob heredocs are not a treesitter feature. Support for special lexcical things such as heredocs are implemented by [`scanner.cc`](https://github.com/tree-sitter/tree-sitter-ruby/blob/master/src/scanner.cc#L657). I guess the scanner used tree-sitter-bash has a similar bug as...
@dentarg As @aeisenberg mentions, at the moment, CodeScanning does not natively support suppressions. However, you can use https://github.com/advanced-security/dismiss-alerts to automatically mark any suppressed alerts as dismissed.
> On the other hand, I think you're right that the depth-first traversal loop can be a _little_ tricky to write. It's kind of borderline, for me, as to whether...
A web search for `AttributeError: '_io.TextIOWrapper' object has no attribute 'reconfigure'` suggests this problem can be solved by using Python version 3.7 or higher. It looks like your self-hosted runner...
@akr-amd The error message you are seeing now is caused by CodeQL not scanning any Python source files in the repository folder. Could you try running without the `./.github/codeql/codeql-config.yml` configuration...
> Without providing the config file, it is able to find all the files. But that's the next problem. > The "Analyze (javascript)" job is also looking at CodeQL's js...
CodeQL traces the build process to figure out how source files are compiled and against which libraries/header files etc. To do this it uses the DYLD_INSERT_LIBRARIES environment variable to inject...
@rnychyporuk-rbi Hopefully https://github.com/github/codeql/pull/15134 will fix the problem.