From ff6eba70aa51a82f918fe5d7ef5e64ee77635217 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 21 Oct 2024 09:22:12 -0400 Subject: [PATCH] no sudo --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7f00ed835..3d334eaba 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -68,16 +68,16 @@ jobs: - name: Install Python run: | if [ -f /etc/debian_version ]; then - sudo apt-get update - sudo apt-get install -y python3 python3-pip + apt-get update + apt-get install -y python3 python3-pip elif [ -f /etc/arch-release ]; then - sudo pacman -Syu --noconfirm python python-pip + pacman -Syu --noconfirm python python-pip elif [ -f /etc/fedora-release ]; then - sudo dnf install -y python3 python3-pip + dnf install -y python3 python3-pip elif [ -f /etc/gentoo-release ]; then - sudo emerge dev-lang/python + emerge dev-lang/python elif [ -f /etc/alpine-release ]; then - sudo apk add --no-cache python3 py3-pip + apk add --no-cache python3 py3-pip fi - name: Install dependencies run: |