From 21b0430e46fe50f1cb7baae677cda5182ea89966 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Mon, 16 Nov 2020 10:14:38 +0100 Subject: [PATCH] actions: update apt repo before installing software --- .github/actions/setup-postgresql/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-postgresql/action.yml b/.github/actions/setup-postgresql/action.yml index a5716be5..98086f2d 100644 --- a/.github/actions/setup-postgresql/action.yml +++ b/.github/actions/setup-postgresql/action.yml @@ -5,7 +5,9 @@ runs: steps: - name: Install postgis - run: sudo apt-get install -y -qq postgresql-13-postgis-3 postgresql-13-postgis-3-scripts postgresql-server-dev-13 + run: | + sudo apt-get update -qq + sudo apt-get install -y -qq postgresql-13-postgis-3 postgresql-13-postgis-3-scripts postgresql-server-dev-13 shell: bash - name: Adapt postgresql configuration -- 2.45.1