From a51f9f64afeafb43e07a2df9f773cbecc4a1f362 Mon Sep 17 00:00:00 2001 From: Scott Lerch Date: Tue, 14 Jul 2026 13:17:53 -0700 Subject: [PATCH] CI: bump actions to Node 24 majors (checkout v5, setup-dotnet v5, upload-artifact v7) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Silences the "Node.js 20 is deprecated" annotation — actions/checkout@v4, actions/setup-dotnet@v4 and actions/upload-artifact@v4 all run on the deprecated Node 20 runtime. Bumped to their current majors, which run on Node 24. No workflow logic changes. 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 2d5d51b..182990a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,11 +32,11 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Installs the exact SDK pinned in global.json (10.0.301, rollForward latestFeature). - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: global-json-file: global.json @@ -93,7 +93,7 @@ jobs: - name: Upload test results and coverage if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-results-${{ matrix.arch }} path: |