This is an automated email from the ASF dual-hosted git repository.

laiyingchun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git


The following commit(s) were added to refs/heads/master by this push:
     new a4279ecd6 chore(CI): Force CI to run on node16 (#2070)
a4279ecd6 is described below

commit a4279ecd63c67f728958381f3edb894fcae824e4
Author: Yingchun Lai <[email protected]>
AuthorDate: Fri Jul 12 21:33:57 2024 +0800

    chore(CI): Force CI to run on node16 (#2070)
    
    The glibc version on ubuntu1804 and centos7 is lower than the node20 
required, so
    we need to force the node version to 16 when running CI.
    
    See more details: https://github.com/actions/checkout/issues/1809
---
 .github/workflows/build-push-env-docker.yml   |  6 ++++++
 .github/workflows/regular-build.yml           |  6 ++++++
 .github/workflows/thirdparty-regular-push.yml | 12 ++++++++++++
 3 files changed, 24 insertions(+)

diff --git a/.github/workflows/build-push-env-docker.yml 
b/.github/workflows/build-push-env-docker.yml
index cdb88e96b..3f9b4f710 100644
--- a/.github/workflows/build-push-env-docker.yml
+++ b/.github/workflows/build-push-env-docker.yml
@@ -34,6 +34,12 @@ on:
 jobs:
   build_compilation_env_docker_images:
     runs-on: ubuntu-latest
+    env:
+      # The glibc version on ubuntu1804 and centos7 is lower than the node20 
required, so
+      # we need to force the node version to 16.
+      # See more details: https://github.com/actions/checkout/issues/1809
+      ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
+      ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
     strategy:
       fail-fast: false
       matrix:
diff --git a/.github/workflows/regular-build.yml 
b/.github/workflows/regular-build.yml
index 4bc36a32c..9beb7cb34 100644
--- a/.github/workflows/regular-build.yml
+++ b/.github/workflows/regular-build.yml
@@ -46,6 +46,12 @@ jobs:
   build_cpp:
     name: Build Cpp
     runs-on: ubuntu-latest
+    env:
+      # The glibc version on ubuntu1804 and centos7 is lower than the node20 
required, so
+      # we need to force the node version to 16.
+      # See more details: https://github.com/actions/checkout/issues/1809
+      ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
+      ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
     strategy:
       fail-fast: false
       matrix:
diff --git a/.github/workflows/thirdparty-regular-push.yml 
b/.github/workflows/thirdparty-regular-push.yml
index a4ea74665..795f4bdb5 100644
--- a/.github/workflows/thirdparty-regular-push.yml
+++ b/.github/workflows/thirdparty-regular-push.yml
@@ -68,6 +68,12 @@ jobs:
 
   build_push_bin_docker_images:
     runs-on: ubuntu-latest
+    env:
+      # The glibc version on ubuntu1804 and centos7 is lower than the node20 
required, so
+      # we need to force the node version to 16.
+      # See more details: https://github.com/actions/checkout/issues/1809
+      ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
+      ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
     needs: build_push_src_docker_images
     strategy:
       fail-fast: false
@@ -104,6 +110,12 @@ jobs:
 
   build_push_bin_jemalloc_docker_images:
     runs-on: ubuntu-latest
+    env:
+      # The glibc version on ubuntu1804 and centos7 is lower than the node20 
required, so
+      # we need to force the node version to 16.
+      # See more details: https://github.com/actions/checkout/issues/1809
+      ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
+      ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
     needs: build_push_src_docker_images
     strategy:
       fail-fast: false


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to