diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index de8b0f7bd6..05b97ec73a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -31,7 +31,7 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - name: Install system packages - run: sudo apt install enchant hunspell aspell-en + run: sudo apt update && sudo apt install enchant hunspell aspell-en - name: Install Dependencies run: pip3 install --no-use-pep517 -Ur doc/requirements.txt - name: Spellcheck docs diff --git a/.github/workflows/strings.yml b/.github/workflows/strings.yml index b35a5c5737..0d5281286b 100644 --- a/.github/workflows/strings.yml +++ b/.github/workflows/strings.yml @@ -29,7 +29,7 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - name: Install system packages - run: sudo apt install gettext + run: sudo apt update && sudo apt install gettext - name: Install Dependencies run: pip3 install --no-use-pep517 -Ur src/requirements.txt - name: Compile messages @@ -54,7 +54,7 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - name: Install system packages - run: sudo apt install enchant hunspell hunspell-de-de aspell-en aspell-de + run: sudo apt update && sudo apt install enchant hunspell hunspell-de-de aspell-en aspell-de - name: Install Dependencies run: pip3 install --no-use-pep517 -Ur src/requirements/dev.txt - name: Spellcheck translations diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8d794ad3b4..2bc5a6f576 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -55,7 +55,7 @@ jobs: restore-keys: | ${{ runner.os }}-pip- - name: Install system dependencies - run: sudo apt install gettext mysql-client + run: sudo apt update && sudo apt install gettext mysql-client - name: Install Python dependencies run: pip3 install -r src/requirements.txt --no-use-pep517 -Ur src/requirements/dev.txt mysqlclient psycopg2-binary - name: Run checks