From 4db07157774542fa72227346c38e419fea695346 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 16 Jul 2026 14:22:58 +0000 Subject: [PATCH 1/2] Bump actions/checkout and actions/cache to v5 for Node 24 runtime GitHub is deprecating Node 20 on Actions runners; checkout@v4 and cache@v4 still target Node 20, so runs get forced onto Node 24 with a deprecation warning. v5 of both actions ships with a Node 24 runtime. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64d7c4f..b739037 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,11 +33,11 @@ jobs: runs-on: windows-2025-vs2026 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Cache Vulkan SDK id: vulkan-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: C:\VulkanSDK key: vulkan-sdk-windows-1.3.290.0 @@ -70,7 +70,7 @@ jobs: vcpkgGitCommitId: 57987637aac17d62bac535bc839baca3754490e6 - name: Cache vcpkg installed packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: build/vcpkg_installed # Runner image is baked into the key (not just "windows-x64") so a @@ -105,7 +105,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Vulkan SDK and build tools run: | From cce0bdf0d9ba4e84f50899e73f7670b0b7b3233a Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 16 Jul 2026 19:41:58 +0000 Subject: [PATCH 2/2] Fix missed actions/cache@v4 in Linux job The Linux job's vcpkg-package cache step still pinned v4, so the Node 20 deprecation warning kept showing on Linux runs even after the Windows jobs and other steps were bumped to v5. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b739037..4b1fa6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -129,7 +129,7 @@ jobs: vcpkgGitCommitId: 57987637aac17d62bac535bc839baca3754490e6 - name: Cache vcpkg installed packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: build/vcpkg_installed key: vcpkg-linux-x64-${{ hashFiles('vcpkg.json') }}-57987637