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
# v4 requires node 20, which won't run due to GLIBC 2.28+ requirement
53
-
- uses: actions/checkout@v3
35
+
- uses: actions/checkout@v4
36
+
37
+
- uses: actions/setup-python@v5
38
+
with:
39
+
python-version: "3.6"
54
40
55
41
- name: Use Node.js
56
-
# v4 requires node 20, which won't run due to GLIBC 2.28+ requirement
57
-
uses: actions/setup-node@v3
58
-
env:
59
-
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
42
+
uses: actions/setup-node@v4
60
43
with:
61
44
node-version: ${{ matrix.node }}
62
45
check-latest: true
63
46
64
47
- name: Install
65
-
env:
66
-
CC: clang
67
-
CXX: clang++
68
-
npm_config_clang: 1
69
-
GYP_DEFINES: use_obsolete_asm=true
70
-
# There is a race condition in node/generate that needs to be fixed
71
-
# Node 16 changed the logic it uses to select it's UID which means to make node run as root and not 1001, we need to chwon the current directory. More Details:
0 commit comments