Skip to content

Commit 8077f21

Browse files
author
camilo
committed
update actions step versions
1 parent edf39e4 commit 8077f21

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/c-cpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository and submodules
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
submodules: recursive
17-
17+
1818
- name: test
1919
run: make test

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
# Initializes the CodeQL tools for scanning.
5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@v2
54+
uses: github/codeql-action/init@v3
5555
with:
5656
languages: ${{ matrix.language }}
5757
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -78,7 +78,7 @@ jobs:
7878
./.github/workflows/codeql-buildscript.sh
7979
8080
- name: Perform CodeQL Analysis
81-
uses: github/codeql-action/analyze@v2
81+
uses: github/codeql-action/analyze@v3
8282
with:
8383
category: "/language:${{matrix.language}}"
8484
upload: false
@@ -107,14 +107,14 @@ jobs:
107107
output: ${{ steps.step1.outputs.sarif-output }}/cpp.sarif
108108

109109
- name: Upload CodeQL results to code scanning
110-
uses: github/codeql-action/upload-sarif@v2
110+
uses: github/codeql-action/upload-sarif@v3
111111
with:
112112
sarif_file: ${{ steps.step1.outputs.sarif-output }}
113113
category: "/language:${{matrix.language}}"
114114

115115
- name: Upload CodeQL results as an artifact
116116
if: success() || failure()
117-
uses: actions/upload-artifact@v3
117+
uses: actions/upload-artifact@v4
118118
with:
119119
name: codeql-results
120120
path: ${{ steps.step1.outputs.sarif-output }}

.github/workflows/doxygen_gen.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
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
@@ -24,13 +24,13 @@ jobs:
2424
sed -i 's,https://repository-images.githubusercontent.com/348492097/4f16df80-88fb-11eb-9d31-4015ff22c452,https://github.com/kmilo17pet/QuarkTS/raw/master/doc/quarktslogo.png,g' doc/stylesheet/doxygen-custom/header.html
2525
sed -i 's,Custom CSS theme for doxygen html-documentation with lots of customization parameters,An open-source OS for small embedded applications,g' doc/stylesheet/doxygen-custom/header.html
2626
- name: Doxygen Action
27-
uses: mattnotmitt/doxygen-action@v1.9.2
27+
uses: mattnotmitt/doxygen-action@edge
2828
with:
2929
doxyfile-path: './doc/Doxygen'
3030
- name: rm gitignore
3131
run: rm .gitignore
3232
- name: Deploy doc
33-
uses: peaceiris/actions-gh-pages@v3
33+
uses: peaceiris/actions-gh-pages@v4
3434
with:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
3636
publish_dir: ./doxyout/html

.github/workflows/static-analisys.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@ on:
1010
- 'tools/**'
1111
- 'src/unity/**'
1212
- 'src/x86_test_do_not_use_it/**'
13-
13+
1414
jobs:
1515
analize:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
19-
with:
18+
- uses: actions/checkout@v4
19+
with:
2020
submodules: recursive
2121
- name: Update OS packages list
2222
run: |
23-
sudo apt-get update -yq
23+
sudo apt-get update -yq
2424
- name: Install analyzer
2525
run: |
2626
sudo apt-get install -y cppcheck python3
2727
mkdir sa_results
28-
- name: General checks
28+
- name: General checks
2929
run: cppcheck --enable=all --inline-suppr --inconclusive --std=c99 ./src/os -I ./src/config -I ./src/os/include --output-file=./sa_results/general.txt --suppress=missingIncludeSystem --suppress=unmatchedSuppression:{}
30-
- name: CERT checks
30+
- name: CERT checks
3131
run: cppcheck --addon=cert.py --inline-suppr --inconclusive --std=c99 ./src/os -I ./src/config -I ./src/os/include --output-file=./sa_results/cert.txt --suppress=missingIncludeSystem --suppress=unmatchedSuppression:{}
32-
- name: MISRA checks
32+
- name: MISRA checks
3333
run: cppcheck --addon=./check/misra.json --inline-suppr --inconclusive --std=c99 ./src/os -I ./src/config -I ./src/os/include --output-file=./sa_results/misra.txt --suppress=missingIncludeSystem --suppress=unmatchedSuppression:{}
34-
- uses: actions/upload-artifact@v3
34+
- uses: actions/upload-artifact@v4
3535
with:
3636
name: Static_Analisys_Results
3737
path: sa_results

0 commit comments

Comments
 (0)