From 2653b67342b48ff2f51d4f53539a91fef2c814c8 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 5 Jul 2024 11:36:27 +0200 Subject: [PATCH] chore(ci): add `ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION:true` env to enforce the usage of node16. Centos:7 does not support node20 (glibc required mismatch). Signed-off-by: Federico Di Pierro --- .github/workflows/reusable_build_packages.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/reusable_build_packages.yaml b/.github/workflows/reusable_build_packages.yaml index 058539d2..62eb7f57 100644 --- a/.github/workflows/reusable_build_packages.yaml +++ b/.github/workflows/reusable_build_packages.yaml @@ -49,6 +49,8 @@ jobs: retention-days: 1 build-packages: + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true # See https://github.com/actions/runner/issues/409#issuecomment-1158849936 runs-on: ${{ (inputs.arch == 'aarch64' && 'actuated-arm64-8cpu-16gb') || 'ubuntu-latest' }} needs: [build-modern-bpf-skeleton]