Skip to content

Commit 09d64b9

Browse files
committed
Fix version for python setup step in github action workflow
1 parent caa90bc commit 09d64b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-package.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
if: "!contains(github.event.head_commit.message, 'ci skip') || !contains(github.event.head_commit.message, 'skip ci')"
2626
strategy:
2727
matrix:
28-
python-version: ['3.7', '3.8', '3.9']
28+
python-version: ['3.7', '3.8', '3.9', '3.10']
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v4
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v2
33+
uses: actions/setup-python@v5
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Install dependencies

0 commit comments

Comments
 (0)