From 33922061282b8a46c98b28d056d61dc7271a06d1 Mon Sep 17 00:00:00 2001 From: pbean Date: Mon, 15 Jun 2026 11:09:56 -0700 Subject: [PATCH] chore(ci): bump GitHub Actions to Node 24 runtimes GitHub is forcing Node 20 actions to Node 24 starting 2026-06-16 and removing Node 20 from runners on 2026-09-16. Bump to the latest majors, all of which run on Node 24: - actions/checkout v4 -> v6 - actions/setup-node v4 -> v6 - actions/cache v4 -> v5 Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 009a515..3cc15f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install Rust toolchain uses: dtolnay/rust-toolchain@master @@ -42,7 +42,7 @@ jobs: sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libxdo-dev webkit2gtk-driver - name: Cache Cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/bin/ @@ -56,7 +56,7 @@ jobs: ${{ runner.os }}-cargo- - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22 cache: npm