From 1601b63fd1973ced041dbc8cd783733eb4a9fd86 Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Mon, 9 Jan 2023 16:26:24 +0200 Subject: [PATCH] Fix CI: Run apt-get update before install Co-authored-by: Adam Johnson fix yaml --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f380e6cc..0a9085130 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup system dependencies - run: sudo apt-get install binutils libproj-dev gdal-bin + run: | + sudo apt-get update + sudo apt-get install binutils libproj-dev gdal-bin - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -56,7 +58,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup system dependencies - run: sudo apt-get install binutils libproj-dev gdal-bin + run: | + sudo apt-get update + sudo apt-get install binutils libproj-dev gdal-bin - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: