From 25324c3cd598c806c70798498613e8360cb94609 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 9 Aug 2025 12:49:56 -0400 Subject: [PATCH] Add uidmap dependency for rootless Docker --- .github/actions/build-dependencies/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index 3187cc07..f699d986 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -49,6 +49,8 @@ runs: run: | docker system prune -a --volumes sudo apt remove -y *docker* + # Install uidmap which will be required for the explicitly installed Docker + sudo apt install uidmap if: runner.os == 'Linux' - name: Update system dependencies