From c08c908ba346977d400ba151f25cab2492cfd7a9 Mon Sep 17 00:00:00 2001 From: Norwid Behrnd Date: Mon, 11 May 2026 12:50:12 +0200 Subject: [PATCH] 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 --- .github/workflows/pytest.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 97a157b..d8fee52 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -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 }}