From f879ec00a7a25a53bbad4e18c31a958057c8d632 Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Tue, 15 Jun 2021 14:49:32 +0200 Subject: [PATCH] Image doesnt use libsodium. --- .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 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