From e41634b75c2fa3d9a12abf6ea441736b9a69eb8a Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Tue, 15 Jun 2021 14:53:42 +0200 Subject: [PATCH] Update apt-get database. --- .github/workflows/ci.cue | 4 +++- .github/workflows/ci.yaml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.cue b/.github/workflows/ci.cue index 0703a92..71c359e 100644 --- a/.github/workflows/ci.cue +++ b/.github/workflows/ci.cue @@ -22,8 +22,10 @@ jobs: ci: { } steps: [ {uses: "actions/checkout@v2"}, + {name: "Update apt-get database", + run: "apt-get update"}, {name: "Install libsodium", - run: "apt-get install -y libsodium"}, + run: "apt-get install -y 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 29de46f..2ebce0e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,8 +20,10 @@ jobs: - ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Update apt-get database + run: apt-get update - name: Install libsodium - run: apt-get install -y libsodium + run: apt-get install -y libsodium-dev - name: Compile source code run: make compile - name: Run the tests