Revert "workaround for apt-get update failures (#1659)"

This reverts commit 209ddea6c7c85a92b7d13e254b2ebd09d64d328c.
This commit is contained in:
Roman Fomin 2024-04-25 22:22:32 +07:00
parent 6bed82d91f
commit 39fc6ccec3

View File

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