workaround for apt-get update failures (#1659)

This commit is contained in:
Roman Fomin 2024-04-24 10:14:52 +00:00 committed by GitHub
parent 8199d9a226
commit 209ddea6c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,7 +42,7 @@ jobs:
- name: Install dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get update || true
sudo apt-get install \
ninja-build \
libsdl2-dev \
@ -140,7 +140,9 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install cppcheck
run: |
sudo apt-get update || true
sudo apt-get install cppcheck
- uses: actions/checkout@v4