Skip to content

Commit 7709c4e

Browse files
committed
Update package installation commands
1 parent ea4a31e commit 7709c4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Update repositories
2020
run: |
21-
apt update || echo "apt-update failed" # && apt -y upgrade
21+
sudo apt update || echo "apt-update failed" # && apt -y upgrade
2222
2323
- name: Checkout ${{ github.event.repository.name }}
2424
uses: actions/checkout@v4
@@ -32,9 +32,9 @@ jobs:
3232

3333
- name: Setup couchbase
3434
run: |
35-
apt install -y iputils-ping || echo "apt-install failed"
35+
sudo apt install -y iputils-ping || echo "apt-install failed"
3636
ping -c 1 couchbase && (
37-
apt install -y socat
37+
sudo apt install -y socat
3838
socat TCP-LISTEN:8091,fork TCP:couchbase:8091 &
3939
socat TCP-LISTEN:8092,fork TCP:couchbase:8092 &
4040
socat TCP-LISTEN:8093,fork TCP:couchbase:8093 &

0 commit comments

Comments
 (0)