From 81bed70bb129422df66d8a6884a00b5f948c4009 Mon Sep 17 00:00:00 2001 From: Vitor Guidi Date: Wed, 15 May 2024 14:36:27 +0000 Subject: [PATCH] apt must be run as sudo --- .github/workflows/build_python_deps_linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_python_deps_linux.yml b/.github/workflows/build_python_deps_linux.yml index 7fb33a8c4b..26336d10db 100644 --- a/.github/workflows/build_python_deps_linux.yml +++ b/.github/workflows/build_python_deps_linux.yml @@ -65,7 +65,7 @@ jobs: - name: Setup linux if: matrix.wheel_combinations[0] == 'ubuntu-latest' - run: apt install -y rustc + run: sudo apt install -y rustc - name: Setup windows if: matrix.wheel_combinations[0] == 'ubuntu-latest'