Skip to content

Commit 594d47e

Browse files
committed
Use Python 3.12 to be able to use match structure.
1 parent 1f4b2d3 commit 594d47e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/generate_github_pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
uses: gradle/actions/setup-gradle@v3
2323
with:
2424
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
25-
- name: Set up Python 3.9
25+
- name: Set up Python 3.12
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: 3.9
28+
python-version: 3.12
2929
- name: Run World screenshots generation script
3030
run: |
3131
./tools/test/generateWorldScreenshots.py

.github/workflows/quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v4
29-
- name: Set up Python 3.9
29+
- name: Set up Python 3.12
3030
uses: actions/setup-python@v5
3131
with:
32-
python-version: 3.9
32+
python-version: 3.12
3333
- name: Search for invalid screenshot files
3434
run: ./tools/test/checkInvalidScreenshots.py
3535

.github/workflows/sync-localazy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
uses: gradle/actions/setup-gradle@v3
2222
with:
2323
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
24-
- name: Set up Python 3.9
24+
- name: Set up Python 3.12
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: 3.9
27+
python-version: 3.12
2828
- name: Setup Localazy
2929
run: |
3030
curl -sS https://dist.localazy.com/debian/pubkey.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/localazy.gpg

.github/workflows/sync-sas-strings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
# No concurrency required, runs every time on a schedule.
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up Python 3.9
16+
- name: Set up Python 3.12
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: 3.9
19+
python-version: 3.12
2020
- name: Install Prerequisite dependencies
2121
run: |
2222
pip install requests

0 commit comments

Comments
 (0)