Skip to content

Commit 424d63f

Browse files
authored
Update docs.yaml (#722)
Fix build with latest GithubActions.
1 parent 2446b2a commit 424d63f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
steps:
1313

1414
- 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
1616

1717
- name: Install Doxygen from SF binary archives
1818
env:
@@ -25,7 +25,7 @@ jobs:
2525
cd doxygen-$DOXYGEN_VERSION
2626
sudo make install
2727
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929

3030
- run: doxygen
3131
working-directory: doxygen
@@ -37,7 +37,7 @@ jobs:
3737
path: ${{ github.workspace }}/doxygen/html
3838

3939
deploy-docs:
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-24.04
4141
needs: [build]
4242
if: github.ref_type == 'branch' && github.ref_name == 'master'
4343
concurrency:
@@ -51,7 +51,7 @@ jobs:
5151
path: docs
5252

5353
- name: upload to github pages
54-
uses: peaceiris/actions-gh-pages@v3
54+
uses: peaceiris/actions-gh-pages@v4
5555
with:
5656
github_token: ${{ secrets.GITHUB_TOKEN }}
5757
publish_dir: ./docs

0 commit comments

Comments
 (0)