Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

error when using role-to-assume #105

Closed
ebenezen opened this issue Aug 4, 2020 · 8 comments
Closed

error when using role-to-assume #105

ebenezen opened this issue Aug 4, 2020 · 8 comments
Assignees

Comments

@ebenezen
Copy link

ebenezen commented Aug 4, 2020

As of 8/3/2020, we are seeing below error when using

##[error]Missing required environment value. Are you running in GitHub Actions?

- name: Configure AWS Credentials
  uses: aws-actions/configure-aws-credentials@v1
  with:
    aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
    aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
    aws-region: ${{ env.G_AWS_REGION }}
    role-to-assume: arn:aws:iam::${{ env.G_AWS_ACCOUNT_ID }}:${{ env.G_ROLE_ASSUME }}
    role-duration-seconds: 1200

to debug further, when we printed all the env variables ( GITHUB_REPOSITORY, GITHUB_WORKFLOW, GITHUB_ACTION, GITHUB_ACTOR, GITHUB_REF, GITHUB_SHA ) , we noticed GITHUB_ACTION to be empty.

Appreciate any help to get this fixed.

@shun-tak
Copy link

shun-tak commented Aug 4, 2020

this also happens in my env

@sauln
Copy link

sauln commented Aug 4, 2020

Looks to be related to an issue with github actions themselves: actions/runner/issues/635

A possible fix is to use GITHUB_ACTIONS instead of GITHUB_ACTION as seen in codecov/codecov-bash/pull/341

@davidjdixon
Copy link

https://github.community/t/github-action-environment-variable-missing-breaking-issue/125913

There was a bug in a recent runner rollout: https://github.com/actions/runner/releases/tag/v2.272.0. We progressively roll runner updates to customers so some customers were impacted by this update (it broke GITHUB_ACTION context, as you saw). We are rolling it back now and all customers should be fixed by 10 am EST.
We apologize for the inconvenience and the issue here and have added some validation to the runner to make sure we have future coverage if the context is impacted before it rolls out to customers.

@piradeepk
Copy link
Contributor

@ebenezen it looks like the release that causes this issue has been rolled back by Github. Wanted to confirm that this is no longer a problem for you before I close this issue.

@sauln
Copy link

sauln commented Aug 6, 2020

Everything works for me now 👍

@ebenezen
Copy link
Author

ebenezen commented Aug 7, 2020

Hi, yes, everything works now after GitHub made changes at their end. Thanks everyone for your support.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants
@davidjdixon @shun-tak @sauln @piradeepk @ebenezen and others