File tree 3 files changed +229
-117
lines changed
3 files changed +229
-117
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
13
13
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v3
17
17
18
18
- name : Setup Arduino CLI
19
-
19
+
20
20
21
21
- name : Install Board Platform
22
22
run : |
Original file line number Diff line number Diff line change 9
9
docs :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
13
- name : Fetch Repository Reference Info
14
14
id : repo-info
15
15
run : |
@@ -21,21 +21,20 @@ jobs:
21
21
COMMIT_MSG=$PROJECT_NUMBER
22
22
if [ "$PROJECT_NUMBER" != "$GIT_SHA_SHORT" ]; then COMMIT_MSG+=" ($GITHUB_SHA)"; fi
23
23
echo "The project number is \"$PROJECT_NUMBER\" and the commit message is \"$COMMIT_MSG\""
24
- echo "::set-output name= project-number:: $PROJECT_NUMBER"
25
- echo "::set-output name= commit-message:: $COMMIT_MSG"
24
+ echo "project-number= $PROJECT_NUMBER" >> $GITHUB_OUTPUT
25
+ echo "commit-message= $COMMIT_MSG" >> $GITHUB_OUTPUT
26
26
27
27
- name : Install Doxygen
28
28
env :
29
- DOXYGEN_VERSION : 1.9.3
29
+ DOXYGEN_VERSION : 1.9.7
30
30
run : |
31
31
wget -q https://www.doxygen.nl/files/doxygen-${{ env.DOXYGEN_VERSION }}.linux.bin.tar.gz
32
32
tar -xf doxygen-${{ env.DOXYGEN_VERSION }}.linux.bin.tar.gz
33
33
cd doxygen-${{ env.DOXYGEN_VERSION }} && sudo make install
34
- sudo apt-get install libclang1-9 libclang-cpp9
35
34
36
35
- name : Install Themes
37
36
env :
38
- DOXYGEN_AWESOME_VERSION : 2.0.3
37
+ DOXYGEN_AWESOME_VERSION : 2.2.1
39
38
working-directory : ./docs
40
39
run : |
41
40
git clone --depth 1 -b v${{ env.DOXYGEN_AWESOME_VERSION }} https://github.com/jothepro/doxygen-awesome-css
You can’t perform that action at this time.
0 commit comments