From 92a32056e4dc67099014cb00ec5bb94a7ba1b5a7 Mon Sep 17 00:00:00 2001 From: Viktor Torstensson Date: Mon, 17 Aug 2026 23:10:57 +0200 Subject: [PATCH] github: bump node version for lit-setup action Bump the node version for the lit-setup action to 24.X as the required node version has been updated for the litd `master` branch. --- .github/actions/lit-setup/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/lit-setup/action.yml b/.github/actions/lit-setup/action.yml index 920a3871..a3f6a170 100644 --- a/.github/actions/lit-setup/action.yml +++ b/.github/actions/lit-setup/action.yml @@ -41,7 +41,7 @@ runs: - name: setup nodejs uses: ./lightning-terminal/.github/actions/setup-node with: - node-version: 16.x + node-version: 24.x - name: Cache yarn dependencies uses: actions/cache@v4 @@ -49,9 +49,9 @@ runs: path: | ~/.cache/yarn lightning-terminal/app/node_modules - key: ${{ runner.os }}-lit-node16-${{ hashFiles('lightning-terminal/app/yarn.lock') }} + key: ${{ runner.os }}-lit-node24-${{ hashFiles('lightning-terminal/app/yarn.lock') }} restore-keys: | - ${{ runner.os }}-lit-node16- + ${{ runner.os }}-lit-node24- - name: install LiT app dependencies working-directory: ./lightning-terminal/app