Skip to content

Commit 92b2de6

Browse files
committed
chore: updt wk to a previous python version in ubuntu
1 parent 3792353 commit 92b2de6

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
jobs:
2222
prepare:
2323
name: Get Current version
24-
runs-on: ubuntu-24.04
24+
runs-on: ubuntu-22.04
2525

2626
outputs:
2727
version: ${{ steps.version.outputs.value }}
@@ -46,7 +46,7 @@ jobs:
4646
4747
publish-docs:
4848
name: Publish Docs
49-
runs-on: ubuntu-24.04
49+
runs-on: ubuntu-22.04
5050

5151
needs:
5252
- prepare
@@ -66,7 +66,7 @@ jobs:
6666
- name: Setup Python
6767
uses: actions/setup-python@v5
6868
with:
69-
python-version: "3.13"
69+
python-version: "3.11"
7070

7171
- name: Cache pip dependencies
7272
id: cache

.github/workflows/merge-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
prepare:
1818
name: Calculate Version and Build Number
19-
runs-on: ubuntu-24.04
19+
runs-on: ubuntu-22.04
2020

2121
outputs:
2222
version: ${{ steps.version.outputs.value }}
@@ -49,7 +49,7 @@ jobs:
4949

5050
prerelease-tag:
5151
name: Create Prerelease Tag
52-
runs-on: ubuntu-24.04
52+
runs-on: ubuntu-22.04
5353

5454
needs:
5555
- prepare

.github/workflows/pull-request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
commitlint:
1111
name: Lint commit message
12-
runs-on: ubuntu-24.04
12+
runs-on: ubuntu-22.04
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -21,7 +21,7 @@ jobs:
2121
lint:
2222
if: github.actor != 'renovate[bot]'
2323
name: Lint source code
24-
runs-on: ubuntu-24.04
24+
runs-on: ubuntu-22.04
2525

2626
steps:
2727
- uses: actions/checkout@v4
@@ -40,7 +40,7 @@ jobs:
4040
- name: Set up Python 3.11
4141
uses: actions/setup-python@v5
4242
with:
43-
python-version: '3.13'
43+
python-version: '3.11'
4444

4545
- uses: actions/cache@v4
4646
name: Cache pip dependencies
@@ -85,15 +85,15 @@ jobs:
8585

8686
validate-docs:
8787
name: Validate Docs
88-
runs-on: ubuntu-24.04
88+
runs-on: ubuntu-22.04
8989

9090
steps:
9191
- uses: actions/checkout@v4
9292

9393
- name: Setup Python 3.11
9494
uses: actions/setup-python@v5
9595
with:
96-
python-version: '3.13'
96+
python-version: '3.11'
9797

9898
- name: Cache pip dependencies
9999
id: cache

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
package:
1212
name: Build and Package
13-
runs-on: ubuntu-24.04
13+
runs-on: ubuntu-22.04
1414

1515
steps:
1616
- uses: actions/checkout@v4
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Python 3.11
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: '3.13'
25+
python-version: '3.11'
2626

2727
- uses: actions/cache@v4
2828
name: Cache pip dependencies
@@ -53,7 +53,7 @@ jobs:
5353

5454
upload-assets:
5555
name: Upload Assets to Release
56-
runs-on: ubuntu-24.04
56+
runs-on: ubuntu-22.04
5757

5858
needs: package
5959

@@ -71,7 +71,7 @@ jobs:
7171

7272
publish-pypi:
7373
name: Publish packages to PyPi
74-
runs-on: ubuntu-24.04
74+
runs-on: ubuntu-22.04
7575
needs: package
7676
permissions:
7777
id-token: write

.github/workflows/triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
label_issues:
13-
runs-on: ubuntu-24.04
13+
runs-on: ubuntu-22.04
1414

1515
permissions:
1616
issues: write

0 commit comments

Comments
 (0)