From 353f5a5e3ef408313a6846d7b0dfda47a996b572 Mon Sep 17 00:00:00 2001 From: Juuso Jokiniemi <68938778+juuso-j@users.noreply.github.com> Date: Mon, 18 Dec 2023 11:55:24 +0200 Subject: [PATCH] Update main.yaml run apt-get update before installing gdal --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 8be7ae67..bc76f13e 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -82,7 +82,7 @@ jobs: python-version: "3.5" - name: Install GDAL - run: sudo apt-get install -y gdal-bin + run: sudo apt-get update && sudo apt-get install -y gdal-bin if: ${{ matrix.toxenv == 'sanitizer' }} - name: Install Tox and tox-gh-actions