From ba69139283bc22b911b0598da196f57758684b48 Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Tue, 15 Jun 2021 14:45:21 +0200 Subject: [PATCH] New try. --- .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 d3c139e..bfdc078 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 libsodium23 libsodium-dev"}, + run: "sudo 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 e319d64..6031b8b 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 libsodium23 libsodium-dev + run: sudo apt-get install -y libsodium - name: Compile source code run: make compile - name: Run the tests