Skip to content

Commit 7252ef4

Browse files
committed
Fix Node.js 16 deprecation warning. Ref: https://github.com/actions/setup-python
1 parent 1eb3367 commit 7252ef4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
uses: actions/checkout@v4
1515
-
1616
name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.x'
19+
python-version: '3.11.7'
2020
-
2121
name: Install dependencies
2222
run: |

0 commit comments

Comments
 (0)