From 262885b93d96369124d8427c62a75b5988383ebb Mon Sep 17 00:00:00 2001 From: Paul Bullock Date: Wed, 15 Jan 2025 20:14:24 +0000 Subject: [PATCH] temporary patch to fix the runner + updates --- .github/workflows/docfx-generate.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docfx-generate.yml b/.github/workflows/docfx-generate.yml index 6b3d01de4..6237ba1de 100644 --- a/.github/workflows/docfx-generate.yml +++ b/.github/workflows/docfx-generate.yml @@ -9,23 +9,24 @@ jobs: # This workflow contains a single job called "build" docfx: # The type of runner that the job will run on - runs-on: ubuntu-latest + # Note temporary patch - https://github.com/actions/runner-images/issues/10636 + runs-on: ubuntu-22.04 # Steps represent a sequence of tasks that will be executed as part of the job steps: # prevent parallel executions - name: Wait for actions to finish - uses: softprops/turnstyle@v1 + uses: softprops/turnstyle@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Checks-out main branch - name: Checkout main branch - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: main path: main # Checks-out gh-pages branch - name: Checkout gh-pages branch - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: gh-pages path: gh-pages