From 3c342dc063fc4cc5454f3a247e52e729de52e7fb Mon Sep 17 00:00:00 2001 From: Jamil Date: Fri, 20 May 2022 10:41:43 -0700 Subject: [PATCH] Update update_deps.yml --- .github/workflows/update_deps.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_deps.yml b/.github/workflows/update_deps.yml index 5261f3f1f..ed9299109 100644 --- a/.github/workflows/update_deps.yml +++ b/.github/workflows/update_deps.yml @@ -1,3 +1,4 @@ +name: Update Dependencies on: workflow_dispatch jobs: @@ -39,7 +40,7 @@ jobs: - name: install llvm on suse-based if: startsWith(matrix.platform, 'opensuse') run: | - zypper install -y -t llvm + sudo zypper install -y -t llvm - name: install llvm on redhat-based if: > startsWith(matrix.platform, 'amazonlinux') || @@ -47,11 +48,11 @@ jobs: startsWith(matrix.platform, 'fedora') || startsWith(matrix.platform, 'fedora') run: | - yum install -y llvm + sudo yum install -y llvm - name: install llvm on debian-based if: > startsWith(matrix.platform, 'debian') || startsWith(matrix.platform, 'ubuntu') run: | - apt-get update - apt-get install -yq llvm + sudo apt-get update + sudo apt-get install -yq llvm