[ 
https://issues.apache.org/jira/browse/FLINK-33277?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17776583#comment-17776583
 ] 

Sergey Nuyanzin commented on FLINK-33277:
-----------------------------------------

Based one error description
{noformat}
##[debug]Running JavaScript Action with default external tool: node20
/__e/node20/bin/node: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.27' not 
found (required by /__e/node20/bin/node)
/__e/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not 
found (required by /__e/node20/bin/node)
/__e/node20/bin/node: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.25' not 
found (required by /__e/node20/bin/node)
{noformat}
in case of actions/checkout@v4 default nodejs is nodejs20 which requires such 
dependencies.
At the same time flink-runtime-web depends on nodejs 16.13.2, 

based on that i wonder whether changing of preinstalled node version helps to 
cope with this
based on https://github.com/actions/setup-node
it should be possible like 
{code:yaml}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
  with:
    node-version: 16
{code} 


> Upgrading to actions/checkout@v4 requires GLIBC 2.25, 2.27, or 2.28 to be 
> installed, apparently
> -----------------------------------------------------------------------------------------------
>
>                 Key: FLINK-33277
>                 URL: https://issues.apache.org/jira/browse/FLINK-33277
>             Project: Flink
>          Issue Type: Sub-task
>            Reporter: Matthias Pohl
>            Priority: Major
>
> https://github.com/XComp/flink/actions/runs/6525835575/job/17718926296#step:5:64



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to