Skip to content

Commit

Permalink
temporary patch to fix the runner + updates
Browse files Browse the repository at this point in the history
  • Loading branch information
pkbullock committed Jan 15, 2025
1 parent 2ba3a98 commit 262885b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/docfx-generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 262885b

Please sign in to comment.