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