From a6bf7d1cf0ad0605239aef7c35ffabe2eef10539 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Wed, 15 Apr 2026 18:35:43 +0200 Subject: [PATCH] fall back to manual install --- .gitea/workflows/ci.yml | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 407eec1..1d7014a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -51,10 +51,8 @@ jobs: - name: Set BRANCH_NAME run: echo "BRANCH_NAME=$(echo $GITHUB_REF_NAME | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV - - name: Setup Node - uses: actions/setup-node@v6 - with: - node-version: 24 + - name: Install Node.js + run: apt-get update && apt-get install -y nodejs - name: Checkout repository uses: actions/checkout@v6 @@ -108,10 +106,8 @@ jobs: - name: Set BRANCH_NAME run: echo "BRANCH_NAME=$(echo $GITHUB_REF_NAME | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV - - name: Setup Node - uses: actions/setup-node@v6 - with: - node-version: 24 + - name: Install Node.js + run: apt-get update && apt-get install -y nodejs - name: Checkout repository uses: actions/checkout@v6 @@ -161,10 +157,8 @@ jobs: - name: Set BRANCH_NAME run: echo "BRANCH_NAME=$(echo $GITHUB_REF_NAME | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV - - name: Setup Node - uses: actions/setup-node@v6 - with: - node-version: 24 + - name: Install Node.js + run: apt-get update && apt-get install -y nodejs - name: Checkout repository uses: actions/checkout@v6 @@ -213,10 +207,8 @@ jobs: - name: Set BRANCH_NAME run: echo "BRANCH_NAME=$(echo $GITHUB_REF_NAME | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV - - name: Setup Node - uses: actions/setup-node@v6 - with: - node-version: 24 + - name: Install Node.js + run: apt-get update && apt-get install -y nodejs - name: Checkout repository uses: actions/checkout@v6