Skip to content

Commit 30d2b9e

Browse files
authored
🐛 fix for updated github runners (#293)
1 parent 2dcf781 commit 30d2b9e

File tree

8 files changed

+13
-12
lines changed

8 files changed

+13
-12
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.8"]
19+
python-version: ["3.11"]
2020
steps:
2121
- uses: actions/checkout@v4
2222

@@ -43,7 +43,7 @@ jobs:
4343
make html
4444
4545
- name: Deploy
46-
uses: peaceiris/actions-gh-pages@v3
46+
uses: peaceiris/actions-gh-pages@v4
4747
with:
4848
github_token: ${{ secrets.GITHUB_TOKEN }}
4949
publish_dir: ./docs/_build/html

.github/workflows/license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
timeout-minutes: 30
1414
strategy:
1515
matrix:
16-
python-version: ["3.10"]
16+
python-version: ["3.11"]
1717
steps:
1818
- uses: actions/checkout@v4
1919

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.10"]
15+
python-version: ["3.11"]
1616
steps:
1717
- uses: actions/checkout@v4
1818

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [ "3.10" ]
19+
python-version: [ "3.11" ]
2020
steps:
2121
- uses: actions/checkout@v4
2222

.github/workflows/test-code-samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version:
1919
- "3.7"
2020
- "3.12"
21-
runs-on: ubuntu-latest
21+
runs-on: "ubuntu-22.04"
2222
steps:
2323
- uses: actions/checkout@v4
2424
with:

.github/workflows/test-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
max-parallel: 2
1919
matrix:
2020
os:
21-
- "ubuntu-latest"
22-
- "windows-latest"
21+
- "ubuntu-22.04"
22+
- "windows-2022"
2323
python-version:
2424
- "3.7"
2525
- "3.12"

.github/workflows/test-regression.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
max-parallel: 2
2020
matrix:
2121
os:
22-
- "ubuntu-latest"
23-
- "windows-latest"
22+
- "ubuntu-22.04"
23+
- "windows-2022"
2424
python-version:
2525
- "3.7"
2626
- "3.12"

.github/workflows/unit-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@ jobs:
1313
strategy:
1414
matrix:
1515
os:
16-
- "ubuntu-latest"
17-
- "windows-latest"
16+
- "ubuntu-22.04"
17+
- "windows-2022"
1818
python-version:
1919
- "3.7"
2020
- "3.8"
2121
- "3.9"
2222
- "3.10"
2323
- "3.11"
2424
- "3.12"
25+
- "3.13"
2526
runs-on: ${{ matrix.os }}
2627
steps:
2728
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)