Commit f5d49d5 1 parent ac1f683 commit f5d49d5 Copy full SHA for f5d49d5
File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
build_wheels_linux_arm64 :
8
8
container :
9
+ env :
10
+ ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
9
11
image : ghcr.io/pantsbuild/wheel_build_aarch64:v3-8384c5cf
10
12
env :
11
13
PANTS_REMOTE_CACHE_READ : ' false'
82
84
timeout-minutes : 90
83
85
build_wheels_linux_x86_64 :
84
86
container :
87
+ env :
88
+ ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
85
89
image : quay.io/pypa/manylinux2014_x86_64:latest
86
90
env :
87
91
PANTS_REMOTE_CACHE_READ : ' false'
Original file line number Diff line number Diff line change @@ -299,6 +299,8 @@ jobs:
299
299
timeout-minutes : 60
300
300
build_wheels_linux_arm64 :
301
301
container :
302
+ env :
303
+ ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
302
304
image : ghcr.io/pantsbuild/wheel_build_aarch64:v3-8384c5cf
303
305
env :
304
306
MODE : debug
@@ -358,6 +360,8 @@ jobs:
358
360
timeout-minutes : 90
359
361
build_wheels_linux_x86_64 :
360
362
container :
363
+ env :
364
+ ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
361
365
image : quay.io/pypa/manylinux2014_x86_64:latest
362
366
env :
363
367
MODE : debug
Original file line number Diff line number Diff line change @@ -856,12 +856,16 @@ def build_wheels_job(
856
856
# the code, install rustup and expose Pythons.
857
857
# TODO: Apply rust caching here.
858
858
if platform == Platform .LINUX_X86_64 :
859
- container = {"image" : "quay.io/pypa/manylinux2014_x86_64:latest" }
859
+ container = {
860
+ "image" : "quay.io/pypa/manylinux2014_x86_64:latest" ,
861
+ "env" : {"ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION" : True },
862
+ }
860
863
elif platform == Platform .LINUX_ARM64 :
861
864
# Unfortunately Equinix do not support the CentOS 7 image on the hardware we've been
862
865
# generously given by the Works on ARM program. So we have to build in this image.
863
866
container = {
864
867
"image" : "ghcr.io/pantsbuild/wheel_build_aarch64:v3-8384c5cf" ,
868
+ "env" : {"ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION" : True },
865
869
}
866
870
else :
867
871
container = None
You can’t perform that action at this time.
0 commit comments