From 277331e737286653f34f63cda9cfa39da7b92fe5 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Wed, 23 Oct 2024 17:01:44 -0700 Subject: [PATCH] also install libfuse3-dev Signed-off-by: Brian L. Troutwine --- .github/actions/install-fuse/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-fuse/action.yml b/.github/actions/install-fuse/action.yml index 48e832c55..986e6eee7 100644 --- a/.github/actions/install-fuse/action.yml +++ b/.github/actions/install-fuse/action.yml @@ -5,7 +5,7 @@ runs: steps: - run: | if [ "${{ runner.os }}" == "Linux" ]; then - sudo apt-get update && sudo apt-get install -y fuse3 + sudo apt-get update && sudo apt-get install -y fuse3 libfuse3-dev elif [ "${{ runner.os }}" == "macOS" ]; then brew install macfuse fi