Skip to content

Commit 1718972

Browse files
committed
Actions: Ensure that apt packages are up to date
1 parent 8f5a407 commit 1718972

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,10 @@ jobs:
380380

381381
- name: Install system dependencies
382382
if: runner.os == 'Linux'
383-
run: sudo apt-get install -y libhdf5-dev libnetcdf-dev
383+
run: |
384+
# Update apt-get cache
385+
sudo apt-get update
386+
sudo apt-get install -y libhdf5-dev libnetcdf-dev
384387
385388
- name: Update and install packages
386389
shell: bash -l {0}

0 commit comments

Comments
 (0)