diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2024-10-02 17:08:07 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2024-10-03 13:05:43 +0200 |
| commit | 2fd6730d4f9c056a98cadfb8c6503e718bd01a75 (patch) | |
| tree | b289c293fb1bdb26806db5413a77bacd6cd04506 /.github/workflows/translations-update.yml | |
| parent | e7a4d7d7c3d688b69737f2b1ecd23571f5e3a0b9 (diff) | |
[mod] py3.8 EOL / upgrade to actions/setup-python@v5
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to '.github/workflows/translations-update.yml')
| -rw-r--r-- | .github/workflows/translations-update.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/translations-update.yml b/.github/workflows/translations-update.yml index 6c1c24562..ea0116662 100644 --- a/.github/workflows/translations-update.yml +++ b/.github/workflows/translations-update.yml @@ -16,9 +16,9 @@ jobs: fetch-depth: '0' token: ${{ secrets.WEBLATE_GITHUB_TOKEN }} - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: '3.9' + python-version: '3.12' architecture: 'x64' - name: Cache Python dependencies id: cache-python @@ -28,7 +28,7 @@ jobs: ./local ./.nvm ./node_modules - key: python-ubuntu-20.04-3.9-${{ hashFiles('requirements*.txt', 'setup.py','.nvmrc', 'package.json') }} + key: python-ubuntu-20.04-3.12-${{ hashFiles('requirements*.txt', 'setup.py','.nvmrc', 'package.json') }} - name: weblate & git setup env: WEBLATE_CONFIG: ${{ secrets.WEBLATE_CONFIG }} |