Tom Keller
Tom Keller
Regarding allowed values, https://github.com/aws-actions/configure-aws-credentials/blob/master/index.js#L180 shows the answer: anything that isn't `true` is considered `false`. This is presently documented in the [action definition file](https://github.com/aws-actions/configure-aws-credentials/blob/master/action.yml#L25)
Hi there! You're getting this error because the JavaScript SDK is unable to load credentials from any of the credential providers. One of the first things the action does it...
Hi there @spring1843, I tested this out in a private repo and it's working for me. Here's my configuration: ``` name: TestAction on: push: branches: [ main ] pull_request_review: types:...
Some more info: `Error: Credentials could not be loaded, please check your action inputs:` appears as a result of the validateCredentials function, which is only called if we're running in...
After further digging, it looks like GitHub simply doesn't populate the environment variables necessary to do OIDC authentication if the GitHub actions token running the job doesn't have the correct...
My reading of this is it would cause the action to fail. See [index.test.js#L218](https://github.com/aws-actions/configure-aws-credentials/blob/master/index.test.js#L218)
Would you be able to accomplish this by chaining steps together and [setting environment variables](https://docs.github.com/en/actions/learn-github-actions/workflow-commands-for-github-actions#setting-an-environment-variable) yourself? Something like: ``` steps: - name: Get AWS credentials uses: aws-actions/[email protected] with: aws-region: us-east-2...
Hi there. Since this is a cross-SDK issue I've created a tracking issue at aws/aws-sdk#376. Please follow that issue for updates instead.
These changes are now integrated into all branches. There are still some cleanup tasks here for us: we need to work around branch protection rules and get a better packaging...
> @kellertk do we need to change anything in how we reference in the GitHub actions. aws-actions/[email protected] If you want to stay up to date as we release changes, you'll...