From 6766328eae902b0f9d970f7c9f614de69e856b66 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Mar 2026 20:16:38 +0000 Subject: [PATCH 1/2] Initial plan From 88cc17deb568f1562d8ce4a502893486c5b12304 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Mar 2026 20:21:38 +0000 Subject: [PATCH 2/2] Fix CI workflows by removing obsolete Node.js setup step Co-authored-by: Skrypt <3228637+Skrypt@users.noreply.github.com> --- .github/workflows/main_ci.yml | 4 ---- .github/workflows/pr_ci.yml | 4 ---- .github/workflows/preview_ci.yml | 5 ----- .github/workflows/release_ci.yml | 4 ---- 4 files changed, 17 deletions(-) diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index c92934195d1..afdeb700e55 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -24,10 +24,6 @@ jobs: os: [ubuntu-24.04, windows-2022] steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 - with: - node-version: "15" - package-manager-cache: false - uses: ./.github/actions/setup-dotnet - name: Build # See pr_ci.yml for the reason why we disable NuGet audit warnings. diff --git a/.github/workflows/pr_ci.yml b/.github/workflows/pr_ci.yml index 5fd8b69f520..721d276d143 100644 --- a/.github/workflows/pr_ci.yml +++ b/.github/workflows/pr_ci.yml @@ -18,10 +18,6 @@ jobs: name: Build & Test steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 - with: - node-version: "15" - package-manager-cache: false - uses: ./.github/actions/setup-dotnet - name: Build # We disable NuGet audit warnings, see https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu1901-nu1904. diff --git a/.github/workflows/preview_ci.yml b/.github/workflows/preview_ci.yml index ca20f38f11d..c38dba47657 100644 --- a/.github/workflows/preview_ci.yml +++ b/.github/workflows/preview_ci.yml @@ -23,11 +23,6 @@ jobs: Write-Output "Commits found in the last 24 hours: $hasCommitFromLastDay." $shouldPublish = ($hasCommitFromLastDay -and '${{ github.event_name }}' -eq 'schedule') -or ('${{ github.event_name }}' -eq 'workflow_dispatch') "should-publish=$($shouldPublish ? 'true' : 'false')" >> $Env:GITHUB_OUTPUT - - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 - if: steps.check-publish.outputs.should-publish == 'true' - with: - node-version: "15" - package-manager-cache: false - uses: ./.github/actions/setup-dotnet if: steps.check-publish.outputs.should-publish == 'true' - name: Set build number diff --git a/.github/workflows/release_ci.yml b/.github/workflows/release_ci.yml index 57004597417..0595b46f070 100644 --- a/.github/workflows/release_ci.yml +++ b/.github/workflows/release_ci.yml @@ -28,10 +28,6 @@ jobs: echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT shell: bash - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 - with: - node-version: "15" - package-manager-cache: false - uses: ./.github/actions/setup-dotnet - name: Set build number if: matrix.os == 'ubuntu-24.04'