From edc28d166ec436838866dd38925813228b7c2a48 Mon Sep 17 00:00:00 2001 From: Liviu Burcusel Date: Tue, 9 Dec 2025 11:08:21 +0100 Subject: [PATCH] apk -> apt --- .github/workflows/sonar.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 88c05e2..bdf58ab 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -55,8 +55,12 @@ jobs: steps: - name: Setup Node environment run: | - apk update - apk add nodejs npm + # apk update + # apk add nodejs npm + apt update -y + apt install -y curl ca-certificates + curl -fsSL https://deb.nodesource.com/setup_24.x | bash - + apt install -y nodejs node --version npm --version - name: Code checkout