From f3a1494d00e6a0dcbc7aea2732798877ea689d0f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 17 Mar 2026 00:15:39 +0000 Subject: [PATCH] chore: upgrade GitHub Actions (checkout v4, setup-node v4, Node 20) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - actions/checkout@v2 → @v4: picks up performance/security improvements and works correctly with modern runners - actions/setup-node@v2.4.0 → @v4 in pull-request.yml - Node.js 14.17.* → '20': Node 14 reached end-of-life in April 2023; Node 20 is the current LTS release - actions/checkout@v2 → @v4 in publish.yml Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/publish.yml | 2 +- .github/workflows/pull-request.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8b8a267a..dec08559 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4.3.1 with: diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1413c30f..ab98a5ff 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -8,15 +8,15 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET uses: actions/setup-dotnet@v4.3.1 with: dotnet-version: '8.0.x' - name: Setup Node.js environment - uses: actions/setup-node@v2.4.0 + uses: actions/setup-node@v4 with: - node-version: 14.17.* + node-version: '20' - name: Install tools run: dotnet tool restore - name: Build and Test