Skip to content

Commit

Permalink
Despite what ChatGPT said, GH Actions does need sudo to install stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kj4ezj committed Feb 6, 2024
1 parent 0b0935a commit cc37aa8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ function ee {
}

# apt
ee apt-get update -qq
ee apt-get install -yqq \
ee sudo apt-get update -qq
ee sudo apt-get install -yqq \
bats \
curl \
git \
Expand All @@ -19,7 +19,7 @@ ee apt-get install -yqq \
# bpkg
ee curl -fsSL 'https://raw.githubusercontent.com/bpkg/bpkg/master/setup.sh' -o bpkg-setup.sh
ee chmod +x bpkg-setup.sh
ee ./bpkg-setup.sh
ee sudo ./bpkg-setup.sh

# versions
source /etc/os-release
Expand Down

0 comments on commit cc37aa8

Please sign in to comment.