W Scott Jasso

Results 8 comments of W Scott Jasso

Sorry for the github PR instead of launchpad, I just made the code change directly in github UI rather than cloning, etc 😄

@ChristopherHX this is still an issue for me on 0.2.44. Just running an action that prints $PATH gives: ```/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin``` Whereas in the runner image, $PATH is something like: ```/usr/local/custom/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin``` This...

> Remember only environment variables defined by ENV KEY VALUE in a Dockerfile are loaded. I removed the code to load /etc/environment. Ahh, I see. Our PATH is set in...

Thanks for the response! > The `Sorry, we couldn't find this file in the repository` error is good example of how `originalUriBaseId` can cause confusion, as when loading code location...

Well there are multiple lint "runs" in the sarif file. Each gradle subproject gets a different lint result, and each one has a different `originalUriBaseId` path.

> In that case, if you're looking for a way to get quickly unblocked you could try post-processing the SARIF in order to ensure the `uri` for each `artifactLocation` has...

I think an explicit annotation-based approach is a little difficult / verbose to use for receivers: ``` fun @receiver:NoParameter TestEnv.foo(arg: String) { ... } ``` It does sound similar to...

> Curious what dagger does? I believe it has an equivalent feature set. it actually doesn't allow this behavior: https://dagger.dev/dev-guide/multibindings > As with any other binding, in addition to depending...