Skip to content

Commit de504da

Browse files
authored
Merge pull request slgobinath#721 from deltragon/fix-ci
fix ci: call apt-get update before install
2 parents 38c91ef + d4e9968 commit de504da

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/mypy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
3131
with:
3232
python-version: '3.13'
33-
- run: sudo apt-get install -y libwayland-dev libcairo2-dev libgirepository-2.0-dev
33+
- run: |
34+
sudo apt-get update
35+
sudo apt-get install -y libwayland-dev libcairo2-dev libgirepository-2.0-dev
3436
- run: uv pip install -r pyproject.toml
3537
- run: uv pip install --group types
3638
- run: mypy safeeyes

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
run: |
2323
python -m pip install --upgrade pip
2424
pip install build wheel
25+
sudo apt-get update
2526
sudo apt-get install -y gettext
2627
2728
- name: Get Current Version

.github/workflows/translations.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
run: |
2626
python3 -m pip install --upgrade pip setuptools wheel
2727
python3 -m pip install polib
28+
sudo apt-get update
2829
sudo apt-get install -y gettext
2930
3031
- name: Check translations

0 commit comments

Comments
 (0)