From ff70dcd05b2c3ebd250a3b556bfa127a5db7befc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Bj=C3=A4reholt?= Date: Sun, 12 Jul 2026 01:40:50 +0200 Subject: [PATCH] chore: bump checkout->v5 and setup-python->v6 (Node 24 native) v4/v5 still target Node 20, which the runners now force onto Node 24 with a deprecation warning. v5/v6 are the Node-24-native majors and clear it. --- .github/workflows/pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index a1991aed..e68e31c4 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -19,13 +19,13 @@ jobs: python_version: ['3.12'] steps: - name: Checkout 🛎️ - uses: actions/checkout@v4 # persist-credentials must be false so the deploy step below uses its own token, not the checkout credentials. + uses: actions/checkout@v5 # persist-credentials must be false so the deploy step below uses its own token, not the checkout credentials. with: submodules: 'recursive' persist-credentials: false - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python_version }}