Skip to content

Commit

Permalink
Don't use ubuntu-latest (#330)
Browse files Browse the repository at this point in the history
Specify ubuntu-22.04 so that OS tooling changes can't break the workflow.
  • Loading branch information
cmacfarl authored Dec 22, 2024
1 parent 4aed6fa commit 9b2f09e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
build-pdf:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
if-no-files-found: error

build-html:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
if-no-files-found: error

spelling-check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -84,7 +84,7 @@ jobs:
reporter: "github-check"

link-check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
retention-days: 7

image-check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -170,7 +170,7 @@ jobs:
run: make -C docs/ imagecheck

check-redirect:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 9b2f09e

Please sign in to comment.