From c8600f135998d3e541e46f94e91eccf5de150301 Mon Sep 17 00:00:00 2001 From: Iker Pedrosa Date: Mon, 14 Oct 2024 12:40:09 +0200 Subject: [PATCH] CI: run command as non-root user Reviewed-by: Alejandro Colomar Signed-off-by: Iker Pedrosa --- .github/actions/install-dependencies/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 243f0b2c..d2e14abd 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -5,7 +5,7 @@ runs: steps: - shell: bash run: | - sudo cat /etc/apt/sources.list.d/ubuntu.sources + cat /etc/apt/sources.list.d/ubuntu.sources sudo sed -i 's/^Types: deb/Types: deb deb-src/' /etc/apt/sources.list.d/ubuntu.sources export DEBIAN_PRIORITY=critical export DEBIAN_FRONTEND=noninteractive