Skip to content

Commit 1e21671

Browse files
authored
Bump Python to 3.11 (#165)
* Bump Python to 3.11 Signed-off-by: Andrey Velichkevich <[email protected]> * Add quotes for version Signed-off-by: Andrey Velichkevich <[email protected]> --------- Signed-off-by: Andrey Velichkevich <[email protected]>
1 parent 58cf9ad commit 1e21671

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.github/workflows/chatops.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434

3535
- name: Set up Python
36-
uses: actions/setup-python@v1
36+
uses: actions/setup-python@v5
3737
with:
38-
python-version: 3.6
38+
python-version: "3.11"
3939

4040
- name: install requests
4141
run: pip3 install requests

.github/workflows/check_config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
- uses: actions/checkout@main
99

1010
- name: Set up Python
11-
uses: actions/setup-python@v1
11+
uses: actions/setup-python@v5
1212
with:
13-
python-version: 3.7
13+
python-version: "3.11"
1414

1515
- name: install dependencies
1616
run: pip3 install pyyaml

.github/workflows/setup.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Setup
2-
on: push
2+
on:
3+
push:
4+
branches:
5+
- master
36

47
jobs:
58
setup:
@@ -8,9 +11,9 @@ jobs:
811
steps:
912

1013
- name: Set up Python
11-
uses: actions/setup-python@v1
14+
uses: actions/setup-python@v5
1215
with:
13-
python-version: 3.6
16+
python-version: "3.11"
1417

1518
- name: Copy Repository Contents
1619
uses: actions/checkout@v2

.github/workflows/upgrade.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
steps:
5858

5959
- name: Set up Python
60-
uses: actions/setup-python@v1
60+
uses: actions/setup-python@v5
6161
with:
62-
python-version: 3.7
62+
python-version: "3.11"
6363

6464
- name: checkout latest fastpages
6565
uses: actions/checkout@v2

0 commit comments

Comments
 (0)