GitHub Actions: Pin ubuntu version and fix package versions (#2915)

This commit is contained in:
Raphael Michel
2022-11-18 13:32:35 +01:00
committed by GitHub
parent 6b5436b71a
commit 0691af7aa4
4 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ on:
jobs:
spelling:
name: Spellcheck
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
@@ -31,7 +31,7 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- name: Install system packages
run: sudo apt update && sudo apt install enchant hunspell aspell-en
run: sudo apt update && sudo apt install enchant-2 hunspell aspell-en
- name: Install Dependencies
run: pip3 install -Ur requirements.txt
working-directory: ./doc