From 2bfdd4a23549908c45a0ef2f5123825ba86aaa4e Mon Sep 17 00:00:00 2001 From: Jeff Trull Date: Mon, 22 Jun 2026 17:51:35 -0700 Subject: [PATCH] Move the checkout action to v7 from v4 Apparently checkout@v4 uses node20, which is being deprecated. --- .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 818062da..bf2681bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,7 +114,7 @@ jobs: # Node 20 doesn't work with Ubuntu 16/18 glibc: https://github.com/actions/checkout/issues/1590 curl -sL https://archives.boost.io/misc/node/node-v20.9.0-linux-x64-glibc-217.tar.xz | tar -xJ --strip-components 1 -C /node20217 - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: linux shell: bash @@ -212,7 +212,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Set DEVELOPER_DIR if: matrix.xcode_version != ''