File tree Expand file tree Collapse file tree 3 files changed +229
-117
lines changed
Expand file tree Collapse file tree 3 files changed +229
-117
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313
1414 steps :
1515 - name : Checkout
16- uses : actions/checkout@v2
16+ uses : actions/checkout@v3
1717
1818 - name : Setup Arduino CLI
19- 19+ 2020
2121 - name : Install Board Platform
2222 run : |
Original file line number Diff line number Diff line change 99 docs :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v2
12+ - uses : actions/checkout@v3
1313 - name : Fetch Repository Reference Info
1414 id : repo-info
1515 run : |
@@ -21,21 +21,20 @@ jobs:
2121 COMMIT_MSG=$PROJECT_NUMBER
2222 if [ "$PROJECT_NUMBER" != "$GIT_SHA_SHORT" ]; then COMMIT_MSG+=" ($GITHUB_SHA)"; fi
2323 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
2626
2727 - name : Install Doxygen
2828 env :
29- DOXYGEN_VERSION : 1.9.3
29+ DOXYGEN_VERSION : 1.9.7
3030 run : |
3131 wget -q https://www.doxygen.nl/files/doxygen-${{ env.DOXYGEN_VERSION }}.linux.bin.tar.gz
3232 tar -xf doxygen-${{ env.DOXYGEN_VERSION }}.linux.bin.tar.gz
3333 cd doxygen-${{ env.DOXYGEN_VERSION }} && sudo make install
34- sudo apt-get install libclang1-9 libclang-cpp9
3534
3635 - name : Install Themes
3736 env :
38- DOXYGEN_AWESOME_VERSION : 2.0.3
37+ DOXYGEN_AWESOME_VERSION : 2.2.1
3938 working-directory : ./docs
4039 run : |
4140 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