Skip to content

Commit dca5064

Browse files
Update GitHub Actions runner to ubuntu-22.04 (#344)
This PR updates the GitHub Actions runner from ubuntu-20.04 to ubuntu-22.04.
1 parent e9046ff commit dca5064

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/gh-pages.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ on:
1919
jobs:
2020
docs:
2121
name: Build main documentation
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-22.04
2323
steps:
2424
- uses: actions/checkout@v4
2525
- name: Install packages
2626
run: |
2727
sudo apt-get update
28-
sudo apt-get install --no-install-recommends -y graphviz plantuml libclang1-9 libclang-cpp1-9
29-
- name: Install doxygen 1.9.2
28+
sudo apt-get install --no-install-recommends -y graphviz plantuml
29+
- name: Install doxygen 1.9.6
3030
run: |
31-
wget -O doxygen.tgz https://sourceforge.net/projects/doxygen/files/rel-1.9.2/doxygen-1.9.2.linux.bin.tar.gz/download
31+
wget -O doxygen.tgz https://sourceforge.net/projects/doxygen/files/rel-1.9.6/doxygen-1.9.6.linux.bin.tar.gz/download
3232
sudo tar -C /opt -xf doxygen.tgz
33-
sudo ln -s /opt/doxygen-1.9.2/bin/doxygen /usr/local/bin/
33+
sudo ln -s /opt/doxygen-1.9.6/bin/doxygen /usr/local/bin/
3434
which doxygen
3535
doxygen --version
3636
- name: Install linkchecker

.github/workflows/schema.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
pack:
1414
name: Validate pack schema
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- uses: actions/checkout@v4
1818
with:
@@ -57,7 +57,7 @@ jobs:
5757
5858
index:
5959
name: Validate index schema
60-
runs-on: ubuntu-20.04
60+
runs-on: ubuntu-22.04
6161
steps:
6262
- uses: actions/checkout@v4
6363
- name: Install packages

doxygen/gen_doc.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# Pre-requisites:
77
# - bash shell (for Windows: install git for Windows)
8-
# - doxygen 1.9.2
8+
# - doxygen 1.9.6
99

1010
set -o pipefail
1111

@@ -21,8 +21,8 @@ if [[ ! -f "${DOXYGEN}" ]]; then
2121
else
2222
version=$("${DOXYGEN}" --version | sed -r -e 's/.*([1-9][0-9]*\.[0-9]+\.[0-9]+).*/\1/')
2323
echo "DOXYGEN is ${DOXYGEN} at version ${version}"
24-
if [[ "${version}" != "1.9.2" ]]; then
25-
echo " >> Version is different from 1.9.2 !" >&2
24+
if [[ "${version}" != "1.9.6" ]]; then
25+
echo " >> Version is different from 1.9.6 !" >&2
2626
fi
2727
fi
2828

0 commit comments

Comments
 (0)