Skip to content

Commit f7a6eda

Browse files
committed
CI: Update GH Actions
* Use v3 for some Actions * Move to 3.11 instead of RC
1 parent c83c562 commit f7a6eda

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/python-testing.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
check:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v3
1515
- name: Output env variables
1616
run: |
1717
echo "Default branch=${default-branch}"
@@ -32,7 +32,7 @@ jobs:
3232
echo "\n"
3333
echo "::debug::---end"
3434
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v2
35+
uses: actions/setup-python@v3
3636
with:
3737
python-version: 3.7
3838
- name: Install dependencies
@@ -49,14 +49,19 @@ jobs:
4949
strategy:
5050
max-parallel: 5
5151
matrix:
52-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-rc.2",
52+
python-version: ["3.6",
53+
"3.7",
54+
"3.8",
55+
"3.9",
56+
"3.10",
57+
"3.11",
5358
# "3.12"
5459
]
5560

5661
steps:
57-
- uses: actions/checkout@v1
62+
- uses: actions/checkout@v3
5863
- name: Set up Python ${{ matrix.python-version }}
59-
uses: actions/setup-python@v2
64+
uses: actions/setup-python@v3
6065
with:
6166
python-version: ${{ matrix.python-version }}
6267
- name: Install dependencies

0 commit comments

Comments
 (0)