File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 45
45
46
46
jobs :
47
47
render-docs :
48
- runs-on : ubuntu-latest
48
+ runs-on : ubuntu-24.04
49
49
permissions :
50
50
contents : write
51
51
steps :
@@ -64,13 +64,13 @@ jobs:
64
64
wget -q -O - https://apt.llvm.org/llvm-snapshot.gpg.key | gpg --dearmor -o /usr/share/keyrings/llvm-archive-keyring.gpg
65
65
66
66
# Add the LLVM repository with the GPG keyring
67
- echo "deb [signed-by=/usr/share/keyrings/llvm-archive-keyring.gpg] http://apt.llvm.org/focal / llvm-toolchain-focal-9 main" | sudo tee /etc/apt/sources.list.d/llvm.list > /dev/null
67
+ echo "deb [signed-by=/usr/share/keyrings/llvm-archive-keyring.gpg] http://apt.llvm.org/jammy / llvm-toolchain-jammy-15 main" | sudo tee /etc/apt/sources.list.d/llvm.list > /dev/null
68
68
69
69
# Update the package lists
70
70
sudo apt-get -qq update
71
71
72
72
# Install libclang and other necessary packages
73
- sudo apt-get -qq install -y libclang1-9 libclang-cpp9 > /dev/null
73
+ sudo apt-get install -y libclang1-15 libclang-cpp15
74
74
75
75
- name : Set up Node.js
76
76
uses : actions/setup-node@v4
79
79
80
80
- name : Install render-docs
81
81
shell : bash
82
- run : npm install github:arduino/render-docs --no-save --silent
82
+ run : npm install github:arduino/render-docs --no-save
83
83
84
84
- name : Cache Doxygen binaries
85
85
id : cache-doxygen-binaries
Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ runs:
42
42
wget -q -O - https://apt.llvm.org/llvm-snapshot.gpg.key | gpg --dearmor -o /usr/share/keyrings/llvm-archive-keyring.gpg
43
43
44
44
# Add the LLVM repository with the GPG keyring
45
- echo "deb [signed-by=/usr/share/keyrings/llvm-archive-keyring.gpg] http://apt.llvm.org/focal / llvm-toolchain-focal-9 main" | sudo tee /etc/apt/sources.list.d/llvm.list > /dev/null
45
+ echo "deb [signed-by=/usr/share/keyrings/llvm-archive-keyring.gpg] http://apt.llvm.org/jammy / llvm-toolchain-jammy-15 main" | sudo tee /etc/apt/sources.list.d/llvm.list > /dev/null
46
46
47
47
# Update the package lists
48
48
sudo apt-get -qq update
49
49
50
50
# Install libclang and other necessary packages
51
- sudo apt-get -qq install -y libclang1-9 libclang-cpp9 > /dev/null
51
+ sudo apt-get install -y libclang1-15 libclang-cpp15
52
52
53
53
- name : Set up Node.js
54
54
uses : actions/setup-node@v4
57
57
58
58
- name : Install render-docs
59
59
shell : bash
60
- run : npm install github:arduino/render-docs --no-save --silent
60
+ run : npm install github:arduino/render-docs --no-save
61
61
62
62
- name : Cache Doxygen binaries
63
63
id : cache-doxygen-binaries
You can’t perform that action at this time.
0 commit comments