run sudo apt update in Ubuntu build

This commit is contained in:
KlausMu 2024-03-30 11:33:29 +01:00 committed by Klaus Musch
parent ff60667ed2
commit 9669d15c3c
1 changed files with 4 additions and 4 deletions

View File

@ -26,10 +26,10 @@ jobs:
python-version: "3.12"
- name: Install SDL2
run: sudo apt install -y libsdl2-dev
run: |
sudo apt update
sudo apt upgrade -y
sudo apt install -y libsdl2-dev