From 4e85ac1421107ad49a1a65d5f9164e9f06fe80f7 Mon Sep 17 00:00:00 2001 From: zane-neo Date: Wed, 10 Jul 2024 11:06:26 +0800 Subject: [PATCH 1/2] fix node version glibc not compatible issue Signed-off-by: zane-neo --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15862709..d8cd1e00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,8 @@ jobs: strategy: matrix: java: [21] + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true name: Build and Test skills plugin on Linux runs-on: ubuntu-latest container: From a138f8d00124497ef48d028f867d8fb914acd265 Mon Sep 17 00:00:00 2001 From: zane-neo Date: Wed, 10 Jul 2024 11:46:48 +0800 Subject: [PATCH 2/2] fix node version glibc not compatible issue Signed-off-by: zane-neo --- .github/workflows/test_security.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_security.yml b/.github/workflows/test_security.yml index 7dff0c80..520425d5 100644 --- a/.github/workflows/test_security.yml +++ b/.github/workflows/test_security.yml @@ -17,7 +17,8 @@ jobs: strategy: matrix: java: [21] - + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true name: Run Security Integration Tests on Linux runs-on: ubuntu-latest needs: Get-CI-Image-Tag