From c7fdef003ce3d2561879e72c89a5701603516540 Mon Sep 17 00:00:00 2001 From: Yasir Date: Mon, 25 Nov 2024 15:25:51 +0300 Subject: [PATCH] chore: install dependencies for iota-private-network and Rust setup actions --- .github/actions/iota-private-network/setup/action.yml | 3 +++ .github/actions/rust/setup/action.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/actions/iota-private-network/setup/action.yml b/.github/actions/iota-private-network/setup/action.yml index 8acd4ca..e022e4a 100644 --- a/.github/actions/iota-private-network/setup/action.yml +++ b/.github/actions/iota-private-network/setup/action.yml @@ -7,6 +7,9 @@ runs: - name: Set up IOTA Node shell: bash run: | + # Install dependencies + apt-get update + apt-get install -y jq wget mkdir -p iota cd iota # Use the output of https://api.github.com/repos/iotaledger/iota/releases/latest diff --git a/.github/actions/rust/setup/action.yml b/.github/actions/rust/setup/action.yml index 78be024..684723e 100644 --- a/.github/actions/rust/setup/action.yml +++ b/.github/actions/rust/setup/action.yml @@ -6,6 +6,9 @@ runs: - name: Install Rust shell: bash run: | + # Install Curl + apt-get update + apt-get install -y curl curl https://sh.rustup.rs -sSf | sh -s -- -y source $HOME/.cargo/env rustup update