Skip to content

Commit 19a0bc1

Browse files
committed
upgrade github workflow config code_quality.yml
1 parent c1fc210 commit 19a0bc1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/code_quality.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- name: Set up Python 3.9
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: 3.9
2121
- name: Install dependencies
@@ -36,15 +36,15 @@ jobs:
3636

3737
strategy:
3838
matrix:
39-
python-version: ["3.7", "3.8", "3.9"]
39+
python-version: ["3.9", "3.10", "3.11", "3.12"]
4040

4141
steps:
4242
- name: Set up Python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v2
43+
uses: actions/setup-python@v5
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646
- name: "Git checkout"
47-
uses: actions/checkout@v2
47+
uses: actions/checkout@v4
4848
- name: Install dependencies
4949
run: |
5050
python -m pip install --upgrade pip
@@ -63,11 +63,11 @@ jobs:
6363

6464
steps:
6565
- name: Set up Python ${{ matrix.python-version }}
66-
uses: actions/setup-python@v2
66+
uses: actions/setup-python@v5
6767
with:
6868
python-version: 3.9
6969
- name: "Git checkout"
70-
uses: actions/checkout@v2
70+
uses: actions/checkout@v4
7171
- name: Install dependencies
7272
run: |
7373
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)