From 0cf0a747572dca196132917ba5ace0e635e5edf4 Mon Sep 17 00:00:00 2001 From: Mgldvd Date: Sun, 26 Feb 2023 19:14:10 -0500 Subject: [PATCH] Github actions run commands as sudo --- .github/workflows/actions.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index f2bd770..e732121 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -16,22 +16,22 @@ jobs: - name: Update ubuntu run: | - apt-get update + sudo apt-get update echo 🏅 - name: Install git run: | - apt-get install git -y + sudo apt-get install git -y echo 🏅 - name: Install python3 run: | - apt-get install python3 -y + sudo apt-get install python3 -y echo 🏅 - name: Install pip3 run: | - apt-get install -y python3-pip + sudo apt-get install -y python3-pip echo 🏅 - name: Python3 requirements.txt