From 80b2fa83b78a0905b0386afbc5f50a72213a94ab Mon Sep 17 00:00:00 2001 From: Matt Ehrnschwender Date: Sat, 10 Feb 2024 14:16:11 -0500 Subject: [PATCH] Add libdbus to env setup --- .github/actions/setup-env/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index b5e8f99..fcddcce 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -22,6 +22,10 @@ runs: env: MYTHIC_CODE: ${{ inputs.mythic-code }} + - name: Install system libraries + shell: bash + run: apt-get update -y && apt-get install -y libdbus-1-dev + - name: Setup cargo cache uses: actions/cache@v4 with: