From 09e096f1d87f0e21e3254ecff3eabde2c61ef4fc Mon Sep 17 00:00:00 2001
From: Baptiste Augrain <daiyam@zokugun.org>
Date: Thu, 4 Apr 2024 22:39:40 +0200
Subject: [PATCH] fix: install system libs for reh

---
 .github/workflows/insider-linux.yml | 13 +++++++++++++
 .github/workflows/stable-linux.yml  | 13 +++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/.github/workflows/insider-linux.yml b/.github/workflows/insider-linux.yml
index 64661d4..91c4878 100644
--- a/.github/workflows/insider-linux.yml
+++ b/.github/workflows/insider-linux.yml
@@ -252,6 +252,19 @@ jobs:
         with:
           ref: ${{ env.GITHUB_BRANCH }}
 
+      - name: Setup Node.js environment
+        uses: actions/setup-node@v4
+        with:
+          node-version: '18.17'
+
+      - name: Setup Python 3
+        uses: actions/setup-python@v5
+        with:
+          python-version: '3.11'
+
+      - name: Install libkrb5-dev
+        run: sudo apt-get install -y libkrb5-dev
+
       - name: Install GH
         run: ./install_gh.sh
         if: env.SHOULD_DEPLOY == 'yes'
diff --git a/.github/workflows/stable-linux.yml b/.github/workflows/stable-linux.yml
index afd8692..56f8309 100644
--- a/.github/workflows/stable-linux.yml
+++ b/.github/workflows/stable-linux.yml
@@ -256,6 +256,19 @@ jobs:
         with:
           ref: ${{ env.GITHUB_BRANCH }}
 
+      - name: Setup Node.js environment
+        uses: actions/setup-node@v4
+        with:
+          node-version: '18.17'
+
+      - name: Setup Python 3
+        uses: actions/setup-python@v5
+        with:
+          python-version: '3.11'
+
+      - name: Install libkrb5-dev
+        run: sudo apt-get install -y libkrb5-dev
+
       - name: Install GH
         run: ./install_gh.sh
         if: env.SHOULD_DEPLOY == 'yes'