Skip to content

Commit a069553

Browse files
committed
Fix versions of doxygen used on github actions jobs
The publish job uses `ubuntu-latest` which is currently Ubuntu 22.04. Switching to specifying 22.04 allows us to manage the point as which the versions are updated. Updating the version of Ubuntu used for the doxygen-check job from Ubuntu 20.04 to 22.04 matches the check job against the publishing job.
1 parent 28d235e commit a069553

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/doxygen-check.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ on:
66
jobs:
77
# This job takes approximately 2 minutes
88
check-doxygen:
9-
runs-on: ubuntu-20.04
9+
# Note that the versions used for this `check-doxygen` job should be kept in
10+
# sync with the `publish` job.
11+
runs-on: ubuntu-22.04
1012
steps:
1113
- uses: actions/checkout@v3
1214
- name: Fetch dependencies

.github/workflows/publish.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ on: [push, pull_request]
44
jobs:
55
# This job takes approximately 3 minutes
66
publish:
7-
runs-on: ubuntu-latest
7+
# Note that the versions used for this `publish` job should be kept in sync
8+
# with the `check-doxygen` job.
9+
runs-on: ubuntu-22.04
810
steps:
911
- name: Checkout repository
1012
uses: actions/checkout@v3

0 commit comments

Comments
 (0)