Skip to content

Commit

Permalink
FIX: run apt-get update prior to install
Browse files Browse the repository at this point in the history
  • Loading branch information
klauer committed Oct 11, 2023
1 parent 1c22cb5 commit d164cb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python-conda-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ jobs:
- name: Install required system packages
if: inputs.system-packages != ''
run: |
sudo apt-get update
sudo apt-get -y install ${{ inputs.system-packages }}
- name: Set up micromamba and environment
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/python-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ jobs:
- name: Install required system packages
if: inputs.system-packages != ''
run: |
sudo apt-get update
sudo apt-get -y install ${{ inputs.system-packages }}
- name: Prepare for log files
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/python-pip-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
- name: Install required system packages
if: inputs.system-packages != ''
run: |
sudo apt-get update
sudo apt-get -y install ${{ inputs.system-packages }}
- name: Prepare for log files
Expand Down

0 comments on commit d164cb1

Please sign in to comment.