From ef049c921f504f0ab3022f34679ec24c12ff5cbc Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Tue, 15 Jun 2021 14:41:10 +0200 Subject: [PATCH] Lets try sudo again, shall we? --- .github/workflows/ci.cue | 2 +- .github/workflows/ci.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.cue b/.github/workflows/ci.cue index 632061c..d3c139e 100644 --- a/.github/workflows/ci.cue +++ b/.github/workflows/ci.cue @@ -23,7 +23,7 @@ jobs: ci: { steps: [ {uses: "actions/checkout@v2"}, {name: "Install libsodium", - run: "apt-get install -y libsodium23 libsodium-dev"}, + run: "sudo apt-get install -y libsodium23 libsodium-dev"}, {name: "Compile source code", run: "make compile"}, {name: "Run the tests", diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 182af0f..e319d64 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install libsodium - run: apt-get install -y libsodium-dev + run: sudo apt-get install -y libsodium23 libsodium-dev - name: Compile source code run: make compile - name: Run the tests