Jáchym Toušek

Results 257 comments of Jáchym Toušek

I ran into the same issue. I believe it is because the runner ran out of memory because this tool loads all the files into memory before uploading them: https://github.com/softprops/action-gh-release/blob/c9b46fe7aad9f02afd89b12450b780f52dacfb2d/src/github.ts#L131...

Did someone find an alternative tool that doesn't have this issue? There is a ton on GitHub Actions Marketplace but so far I couldn't find one that would be similarly...

@softprops It shouldn't be too difficult to fix this bug. Most likely you just need to use this: https://www.geeksforgeeks.org/node-js-fs-createreadstream-method/

@damian-m-g Your comment just saved me. My compiled exe kept throwing an exception like this: ``` `require': 126: The specified module could not be found. - C:/Users/Enumag/AppData/Local/Temp/ocr2D04.tmp/lib/ruby/gems/3.1.0/gems/zlib-2.1.1/lib/zlib.so (LoadError) ``` But...

Note: I wanted to disable ModulesIntegration since the package versions are useless traffic for us but once again I ran into this exact issue. :(

Yeah, I expected something like that. That's why I marked it as a draft. CallableTypeHelper is used in [CallableType](https://github.com/phpstan/phpstan-src/blob/7e51e34a372b2ec59c57d50a00ac2eca4b7dca31/src/Type/CallableType.php#L135) and [ClosureType](https://github.com/phpstan/phpstan-src/blob/7e51e34a372b2ec59c57d50a00ac2eca4b7dca31/src/Type/ClosureType.php#L146). I believe I only need `ParametersAcceptorWithPhpDocs` for the `$theirs`...

> Exactly, these are the places that need to pass in the information about the function being internal or not. Right now I'm more concerned about how to correctly handle...

My colleague ran into this issue as well. He's working on Windows but the odd thing is that he's running go and golangci-lint inside a docker container. Admittedly `diff` is...

Ah okay it seems it's actually not a problem of the golangci-lint itself but rather `gci` in particular. So I disabled it in favor of `goimports`.

Possibly a duplicate of https://github.com/phpstan/phpstan/issues/4100? :thinking: But there is still the strict rules issue. :man_shrugging: