File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
build :
11
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-24.04
12
12
steps :
13
13
14
14
- name : Install Doxygen static libclang deps
15
- run : sudo apt-get install libclang1-12 libclang-cpp12
15
+ run : sudo apt-get install libclang1-18 libclang-cpp18
16
16
17
17
- name : Install Doxygen from SF binary archives
18
18
env :
25
25
cd doxygen-$DOXYGEN_VERSION
26
26
sudo make install
27
27
28
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
29
29
30
30
- run : doxygen
31
31
working-directory : doxygen
37
37
path : ${{ github.workspace }}/doxygen/html
38
38
39
39
deploy-docs :
40
- runs-on : ubuntu-latest
40
+ runs-on : ubuntu-24.04
41
41
needs : [build]
42
42
if : github.ref_type == 'branch' && github.ref_name == 'master'
43
43
concurrency :
51
51
path : docs
52
52
53
53
- name : upload to github pages
54
- uses : peaceiris/actions-gh-pages@v3
54
+ uses : peaceiris/actions-gh-pages@v4
55
55
with :
56
56
github_token : ${{ secrets.GITHUB_TOKEN }}
57
57
publish_dir : ./docs
You can’t perform that action at this time.
0 commit comments