diff --git a/.github/workflows/ci.cue b/.github/workflows/ci.cue index bfdc078..0703a92 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: "sudo apt-get install -y libsodium"}, + run: "apt-get install -y libsodium"}, {name: "Compile source code", run: "make compile"}, {name: "Run the tests", diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6031b8b..29de46f 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: sudo apt-get install -y libsodium + run: apt-get install -y libsodium - name: Compile source code run: make compile - name: Run the tests