ci(pytest.yml): update checkout and setup-python action

According to the GitHub blog,[1] Node.js 20 actions now are
deprecated.  Thus, `actions/checkout@v4` is substituted by
`actions/checkout@v5`, and `actions/setup-python@v5` by
`actions/setup-python@v6`.

[1] https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/

Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
This commit is contained in:
Norwid Behrnd 2026-05-11 12:50:12 +02:00
parent 298e9cfeaa
commit c08c908ba3
No known key found for this signature in database

View file

@ -33,11 +33,9 @@ jobs:
timeout-minutes: 5 # Timeout for each job individually
steps:
- uses: actions/checkout@v4
# by [2024-10-23 Wed], this version possibly will be considered "old", cf.
# https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}