Skip to content

Commit d698388

Browse files
committed
ci: upgrade python and github actions
Upgrading python versions: 3.6-3.10 -> 3.10-3.12 Upgrading action/checkout: @v1 -> @v5 Upgrading action/setup_python: @v1 -> @v6 Signed-off-by: TOKITA Hiroshi <[email protected]>
1 parent 2994b7d commit d698388

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
python-version:
12-
- "3.7"
13-
- "3.8"
14-
- "3.9"
1512
- "3.10"
13+
- "3.11"
14+
- "3.12"
1615
steps:
17-
- uses: actions/checkout@v1
16+
- name: Checkout the code
17+
uses: actions/checkout@v5
18+
with:
19+
fetch-depth: 0
1820
- name: Set up Python
19-
uses: actions/setup-python@v1
21+
uses: actions/setup-python@v6
2022
with:
2123
python-version: ${{ matrix.python-version }}
2224
- name: install dependencies

0 commit comments

Comments
 (0)