From 82ad0cd2cd4e253bf62151f7e9d0dd8573f22a0c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Jun 2026 15:29:33 +0000 Subject: [PATCH 1/2] Initial plan From 2694a12c8638b905138f9b66490e6c277089eb1c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Jun 2026 15:33:46 +0000 Subject: [PATCH 2/2] Fix CI: pin to windows-2022, update deprecated GitHub Actions --- .github/workflows/build_docs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index 7a4222e..9bff5df 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -11,12 +11,12 @@ concurrency: docs-build jobs: build: - runs-on: windows-latest + runs-on: windows-2022 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Setup Dotnet for use with actions - uses: actions/setup-dotnet@v1.0.0 + uses: actions/setup-dotnet@v4 - name: Extract branch name shell: bash run: | @@ -28,7 +28,7 @@ jobs: - name: Run CakeBuild script run: ./common/build.ps1 --target=PublishGHPages --build_version="${env:GH_BRANCH}" - name: Deploy to GH Pages - uses: crazy-max/ghaction-github-pages@v2 + uses: crazy-max/ghaction-github-pages@v5 with: target_branch: gh-pages build_dir: gh-pages