mirror of
https://github.com/release-engineering/repo-autoindex.git
synced 2025-02-23 21:52:52 +00:00
[ci] fix install of OS packages in CI workflows
We should be using "apt-get update" to update package lists before installing any new packages. This has never mattered before, but recently the installation of various packages started to fail with 404 errors, which are resolved by updating the package lists first.
This commit is contained in:
parent
8b101d10fe
commit
e5543a3454
1 changed files with 4 additions and 2 deletions
6
.github/workflows/docs.yml
vendored
6
.github/workflows/docs.yml
vendored
|
@ -15,8 +15,10 @@ jobs:
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
python-version: 3.9
|
||||||
- name: Install system dependencies
|
- name: Install OS packages
|
||||||
run: sudo apt-get install -y libkrb5-dev
|
run: |
|
||||||
|
sudo apt-get -y update
|
||||||
|
sudo apt-get install -y libkrb5-dev
|
||||||
- name: Install Tox
|
- name: Install Tox
|
||||||
run: pip install tox
|
run: pip install tox
|
||||||
- name: Run Tox
|
- name: Run Tox
|
||||||
|
|
Loading…
Add table
Reference in a new issue