From faaedb10ce003b1c7824b5490d687e963929d658 Mon Sep 17 00:00:00 2001 From: John Burwell Date: Tue, 2 May 2023 20:56:11 -0500 Subject: [PATCH] without sudo --- .gitea/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 8274ae9..01165f6 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -9,8 +9,8 @@ jobs: uses: actions/checkout@v3 - name: Install Python and pip run: | - sudo apt update - sudo apt install python3-pip + apt update + apt install python3-pip - name: Install dependencies run: | python -m pip install --upgrade pip