From 0c599bd3532f3b02506b1474bd10d0abdaee8d17 Mon Sep 17 00:00:00 2001 From: Jeremy Manning Date: Thu, 11 Jun 2026 07:50:38 -0400 Subject: [PATCH] Update CI actions to checkout@v4 and setup-python@v5 (Node 20 deprecation) GitHub forces Node.js 24 on June 16, 2026; checkout@v2 and setup-python@v2 run on Node 20 and would break the autocheck workflow. Co-Authored-By: Claude Fable 5 --- .github/workflows/autocheck.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autocheck.yml b/.github/workflows/autocheck.yml index e7b95bd..03802aa 100644 --- a/.github/workflows/autocheck.yml +++ b/.github/workflows/autocheck.yml @@ -20,10 +20,10 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: '3.9' - name: install dependencies run: | python -m pip install --upgrade pip