James Funk

Results 7 comments of James Funk

This should for sure be documented (or fixed, if undesired behavior). I discovered https://github.com/actions/cache/issues/735 first, and put my findings there. Basically, the path must match exactly, and I was using...

I am experiencing this same problem on Linux. It is a mix of GitHub hosted and Self-Hosted. The first job is GitHub hosted: ``` Post job cleanup. /usr/bin/tar --posix --use-compress-program...

I found a fix for this for me. In my workflow, I was using `${{ github.workspace }}/prod.tar.gz` as the cache path. I used the exact same string on GH hosted...

Yes @Barabas5532, yours seems to be that the first run was on the `ccache` branch, and the second run was on `master` branch. `master` doesn't get access to `ccache` cache,...

I found a different issue before this one, figured I'd link the 2, as they seem related: https://github.com/swagger-api/swagger-codegen/issues/10851 My opinion is to move off Swagger tools and onto OpenAPI tools.

As referenced by @leviport, I'm suffering from the mouse jumping around as well. Disabling `psmouse` module stops it from jumping. I have some extra debug info that will hopefully help....

I was able to get this to work by adding the `ChecksumAlgorithm` property to my `putObject` input: ```javascript import { ChecksumAlgorithm, S3 } from '@aws-sdk/client-s3' await s3.putObject({ Bucket: bucket, Key:...