From 33f73ed0e88ab75e8452930266572e1f870e09b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20S=C3=A6ther?= Date: Sun, 7 Jun 2026 00:09:47 +0200 Subject: [PATCH] ci: bump checkout to v5 and setup-python to v6 (Node 24) Avoids the Node 20 deprecation warning on GitHub Actions runners. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86a7c36..c04f76f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install dependencies run: | @@ -26,7 +26,7 @@ jobs: run: make - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.x'