Skip to content

Commit d40c7d2

Browse files
author
camilo
committed
update doc template. Update actions steps version
1 parent 28b2def commit d40c7d2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/doxygen_gen.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
steps:
1313
- name: Checkout repository and submodules
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
submodules: recursive
1717
- name: create dirs
@@ -25,7 +25,7 @@ jobs:
2525
- name: rm gitignore
2626
run: rm .gitignore
2727
- name: Deploy doc
28-
uses: peaceiris/actions-gh-pages@v3
28+
uses: peaceiris/actions-gh-pages@v4
2929
with:
3030
github_token: ${{ secrets.GITHUB_TOKEN }}
3131
publish_dir: ./doxyout/html

.github/workflows/static-analisys.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@ on:
66
paths-ignore:
77
- 'dep/**'
88
- 'doc/**'
9-
9+
1010
jobs:
1111
analize:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
15-
with:
14+
- uses: actions/checkout@v4
15+
with:
1616
submodules: recursive
1717
- name: Update OS packages list
1818
run: |
19-
sudo apt-get update -yq
19+
sudo apt-get update -yq
2020
- name: Install analyzer
2121
run: |
2222
sudo apt-get install -y cppcheck python3
2323
mkdir sa_results
24-
- name: General checks
24+
- name: General checks
2525
run: cppcheck --enable=all --inline-suppr --inconclusive --std=c++11 ./src -I ./src/include --output-file=./sa_results/general.txt --suppress=missingIncludeSystem --suppress=unmatchedSuppression:{} --suppress=unusedFunction:{}
26-
- uses: actions/upload-artifact@v3
26+
- uses: actions/upload-artifact@v4
2727
with:
2828
name: Static_Analisys_Results
2929
path: sa_results

0 commit comments

Comments
 (0)