Ian Walters

Results 10 comments of Ian Walters

See, this is what I really want... just the persist-credentials part. then I could have ``` - uses: actions/deploykey@v? with: ssh-key ``` and all it does is make it so...

I should also admit I'm new to the `JTDSchemaType` - so I'm not going to take offense if it turns out the bug is in my code. The version of...

Sorry, missed your comment last month which is why there hasn't been a reply. Fair point on the request for a more isolated example though - may not get that...

Turns out this is fixed in 8.13.0 (still can reproduce it in 8.12.0, but not 8.13.0) so no point in creating a more minimal example for something that is fixed...

For what its worth, I'm seeing something similar for a call to cognito via the v3 sdk within a node canary runtime (7.0) - the reply indicates success (200 -...

See also: https://github.com/aws/aws-sdk-js-v3/discussions/5299

This work-around worked for me: ```typescript import { FetchHttpHandler } from '@smithy/fetch-http-handler' // other code const cognitoIdentity = new CognitoIdentity({ requestHandler: new FetchHttpHandler({}) }) ``` Basically: explicity forcing the SDK...

Trying to work around this open ticket... not sure this is right though. Deployment seems to get stuck. ```Typescript import { determineFullyQualifiedDomainName } from '@aws-cdk/aws-route53/lib/util' // ... const alias =...

Just another idea for the same core use case. ``` - uses: actions/checkout@v2 - uses: actions/checkout-submodule@v2 with: ``` Seems a couple of community actions do something similar already, would prefer...

or ``` - uses: actions/checkout@v2 - uses: actions/checkout@v2 with: submodules: [ submodule, paths ] ssh-key: .... ``` and the second uses detects a git repo in the current directory already...