We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55249c4 commit 4387cd8Copy full SHA for 4387cd8
.github/workflows/build.yml
@@ -33,9 +33,17 @@ jobs:
33
if: needs.check_upstream.outputs.needupdated == 'true'
34
container:
35
image: "centos:7"
36
+ volumes:
37
+ - /node20217:/node20217:rw,rshared
38
+ - /node20217:/__e/node20:ro,rshared
39
env:
40
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
41
steps:
42
+ - name: install nodejs20glibc2.17
43
+ run: |
44
+ curl -LO https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz
45
+ tar -xf node-v20.9.0-linux-x64-glibc-217.tar.xz --strip-components 1 -C /node20217
46
+ ldd /__e/node20/bin/node
47
- uses: actions/checkout@v3
48
49
with:
0 commit comments