From 9ea53387fdf6507d935053b3dac62103421d498c Mon Sep 17 00:00:00 2001 From: Aaron McConnell Date: Mon, 27 Jul 2026 11:54:59 -0400 Subject: [PATCH] chore: update GitHub Actions to Node 24-compatible versions GitHub Actions runners will default to Node 24 on 2026-06-16 and remove Node 20 in fall 2026 (JS actions on Node 12/16/20 are all affected). Bump every JS-based action to its latest Node 24-capable release, SHA-pinned with a version comment. Not changed (no Node 24 release / composite / archived): - darenm/Setup-VSTest (no Node 24 release exists) - dtolnay/rust-toolchain (composite action) - actions/create-release, actions/upload-release-asset (archived; need rewrite) Ref: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ Co-Authored-By: Claude Opus 4.8 --- .github/workflows/publish.yml | 4 ++-- .github/workflows/python-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b4fd47e..14dce95 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 with: python-version: '3.x' - name: Install dependencies diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 40c1843..e6efb56 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 with: python-version: ${{ matrix.python-version }} - name: Dependencies