Skip to content

Commit

Permalink
Install sudo before updating system in the build CI
Browse files Browse the repository at this point in the history
  • Loading branch information
IshaanDesai committed Jan 16, 2024
1 parent cda0add commit c3dc57f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ubuntu_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:

steps:
- name: Update system
run: sudo apt update && sudo apt upgrade -y
run: |
apt-get -qq install sudo
sudo apt update && sudo apt upgrade -y
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
Expand Down

0 comments on commit c3dc57f

Please sign in to comment.