From 00e9466e7d71dd75fc9b4780c80e9ce351baac6d Mon Sep 17 00:00:00 2001 From: zane-neo Date: Wed, 10 Jul 2024 13:48:30 +0800 Subject: [PATCH] fix node version glibc not compatible issue (#347) * fix node version glibc not compatible issue Signed-off-by: zane-neo * fix node version glibc not compatible issue Signed-off-by: zane-neo --------- Signed-off-by: zane-neo --- .github/workflows/ci.yml | 2 ++ .github/workflows/test_security.yml | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) 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: 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