You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running on with github runners and we're running into issues where @v2 is using node20 instead of node16.
Steps:
Run aws-actions/aws-secretsmanager-get-secrets@v2 /home/ec2-user/actions-runner/externals/node20/bin/node: /lib64/libm.so.6: version `GLIBC_2.27' not found (required by /home/ec2-user/actions-runner/externals/node20/bin/node) /home/ec2-user/actions-runner/externals/node20/bin/node: /lib64/libc.so.6: version `GLIBC_2.28' not found (required by /home/ec2-user/actions-runner/externals/node20/bin/node)
I added ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true in the env but the same issues persists. The following is my action file.
node 16 reached end of life late last year. Github asked the action owners to migrate to the Node 20 (link). The @v2 was created to run with the node 20 from the begging. If you like you can try to reference original @v1 that is still using node 16.
I don't think that this is problem of the SecretsManager Action, but rather your runner can't start the Node 20. As pointed out in previous message, we can't downgrade to the Node 16 (see one of our previous tickets #69) since it was deprecated.
Running on with github runners and we're running into issues where @v2 is using node20 instead of node16.
Steps:
/home/ec2-user/actions-runner/externals/node20/bin/node: /lib64/libm.so.6: version `GLIBC_2.27' not found (required by /home/ec2-user/actions-runner/externals/node20/bin/node) /home/ec2-user/actions-runner/externals/node20/bin/node: /lib64/libc.so.6: version `GLIBC_2.28' not found (required by /home/ec2-user/actions-runner/externals/node20/bin/node)
I added
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
in the env but the same issues persists. The following is my action file.The text was updated successfully, but these errors were encountered: