From 693037232ca46fe84c06ea7b71979e26656d5357 Mon Sep 17 00:00:00 2001 From: Luiz Motta Date: Fri, 13 Dec 2024 14:10:43 -0300 Subject: [PATCH] Allow unprivileged user namespace --- .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 d10f0cd9138..dcb27242331 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -246,6 +246,10 @@ runs: libxml2-utils > /dev/null 2>&1 fi + - name: "Allow unprivileged user namespace (Ubuntu Only)" + shell: bash + run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 + - name: "Update bash for macOS (macOS Only)" shell: bash if: runner.os == 'macOS'