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

AWS Self Hosted runner fails with Node error #862

Open
tbulding opened this issue Sep 21, 2023 · 5 comments
Open

AWS Self Hosted runner fails with Node error #862

tbulding opened this issue Sep 21, 2023 · 5 comments
Assignees
Labels
bug Something isn't working

Comments

@tbulding
Copy link

tbulding commented Sep 21, 2023

Describe the bug

When authenticating with a Self Hosted runner that runs on AWS, the action fails with the following error...

Run aws-actions/configure-aws-credentials@v4
/opt/actions-runner/externals/node20/bin/node: /lib64/libm.so.6: version GLIBC_2.27' not found (required by /opt/actions-runner/externals/node20/bin/node) /opt/actions-runner/externals/node20/bin/node: /lib64/libc.so.6: version GLIBC_2.28' not found (required by /opt/actions-runner/externals/node20/bin/node)

Expected Behavior

Run aws-actions/configure-aws-credentials@v3
Proceeding with IAM user credentials

Current Behavior

Run aws-actions/configure-aws-credentials@v4
/opt/actions-runner/externals/node20/bin/node: /lib64/libm.so.6: version GLIBC_2.27' not found (required by /opt/actions-runner/externals/node20/bin/node) /opt/actions-runner/externals/node20/bin/node: /lib64/libc.so.6: version GLIBC_2.28' not found (required by /opt/actions-runner/externals/node20/bin/node)

Reproduction Steps

  - name: Step 2 - Configure AWS Credentials
    if: ${{ always() }} #  This ensures that your workflow runs successfully
    uses: aws-actions/configure-aws-credentials@v4
    with:
      aws-region: ${{ env.AWS_REGION }}

Possible Solution

I was able to execute the authentication simply by going down to version 3
- name: Step 2 - Configure AWS Credentials
if: ${{ always() }} # This ensures that your workflow runs successfully
uses: aws-actions/configure-aws-credentials@v3
with:
aws-region: ${{ env.AWS_REGION }}

Additional Information/Context

No response

@tbulding tbulding added bug Something isn't working needs-triage This issue still needs to be triaged labels Sep 21, 2023
@yasminetalby
Copy link
Contributor

Hello @tbulding ,

Thank you very much for your submission.

As you can see in the changelog, the difference between configure-aws-credentials v3 and v4 is that we have upgraded runtime to node20 from node16.

What OS and glibc version are you using?

Node16 and Node20 don't have the same requirements which is why you might experience this error by upgrading from v3 to v4.

I have linked the Building.md file for node16 and node20 respectively above so you can check if you are meeting all requirement.

Let me know if this helps you resolve your issue or if you have any further questions or inquiries!

Best regards,

Yasmine

@yasminetalby yasminetalby added response-requested Waiting on additional info and feedback. Will move to 'closing-soon' in 5 days. and removed needs-triage This issue still needs to be triaged labels Sep 21, 2023
@yasminetalby yasminetalby self-assigned this Sep 21, 2023
@kellertk
Copy link
Contributor

I suspect you're running this on EL7 (CentOS, RHEL, etc.). Although the GitHub runner documentation says that CentOS 7 is supported, I'm not sure this is true for recent versions of the GitHub runner.

Does this still happen if you use version 2.285 of the runner? This was the first release to support Node 16.

@peterwoodworth peterwoodworth added response-requested Waiting on additional info and feedback. Will move to 'closing-soon' in 5 days. and removed response-requested Waiting on additional info and feedback. Will move to 'closing-soon' in 5 days. labels Sep 21, 2023
@tbulding
Copy link
Author

Hello, thank you for the prompt replies. The build is using ec2 instances on al2, This is a new deployment using the latest runner code.

@github-actions github-actions bot removed the response-requested Waiting on additional info and feedback. Will move to 'closing-soon' in 5 days. label Sep 22, 2023
@dmirica-gpsw
Copy link

I encountered this even when using latest docker image from amazon for aws cli (amazon/aws-cli:2.15.11); I would have thought that this way would be compatible.
(indeed v3 works)

@jbelkins
Copy link

I get these same error messages if I try to set up AWS credentials when running:

  • v4 of this action,
  • on a Github runner (2.311.0),
  • with a Amazon Linux 2-based Docker image (swift:5.9-amazonlinux2)
      - uses: aws-actions/configure-aws-credentials@v4
        with:
          role-to-assume: <...>
          aws-region: us-west-2

The same credential setup action is successful if I replace the Docker image with one based on Ubuntu (Focal or Jammy, both work.)

Seems like there is definitely some issue between v4 of this action and AL2.

NDStrahilevitz added a commit to NDStrahilevitz/tracee that referenced this issue May 9, 2024
1. Downgrade AWS authentication v3
(see aws-actions/configure-aws-credentials#862)
2. Add missing needs label to the benchmark job
NDStrahilevitz added a commit to aquasecurity/tracee that referenced this issue May 9, 2024
1. Downgrade AWS authentication v3
(see aws-actions/configure-aws-credentials#862)
2. Add missing needs label to the benchmark job
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

6 participants