From 575add943a6c4291ba9024eac6c3dff44d2feae9 Mon Sep 17 00:00:00 2001 From: Maarten Sebregts Date: Fri, 5 Jun 2026 11:45:49 +0200 Subject: [PATCH] Updates the following actions to a newer version: - actions/checkout: v4 -> v6 - actions/setup-python: v5 -> v6 - actions/cache: v4 -> v5 Change is required because the old versions used Node.js 20, which will be unsupported after September. --- .github/workflows/ci.yaml | 2 +- .github/workflows/ci_python_compatibility.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 93f5ec9..be708b6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Run the test suite run: | diff --git a/.github/workflows/ci_python_compatibility.yaml b/.github/workflows/ci_python_compatibility.yaml index 96acb98..5c0ef65 100644 --- a/.github/workflows/ci_python_compatibility.yaml +++ b/.github/workflows/ci_python_compatibility.yaml @@ -10,15 +10,15 @@ jobs: steps: - name: Check out the source code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Cache Tox - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/.tox key: python-compatibility-${{ matrix.python-version }}-tox