From 0cc8a45d8862eb5f8370bf7e703994280615886d Mon Sep 17 00:00:00 2001 From: Alex Moinet Date: Tue, 10 Oct 2023 09:08:34 +0100 Subject: [PATCH] Add libcurl and other tools required for maze-runner --- .github/workflows/update-dependencies.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index eec6d6c29..fc62caaa2 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -26,6 +26,12 @@ jobs: - run: git submodule update --init --recursive + - name: Install libcurl4-openssl-dev and net-tools + run: | + sudo apt-get update + sudo apt-get install libcurl4-openssl-dev net-tools + + - name: Install ruby uses: ruby/setup-ruby@v1 with: