Skip to content

Commit da5706a

Browse files
author
Gonzalo Diaz
committed
[CONFIG] Github Actions: cppcheck updated to 2.20.99
1 parent 814857e commit da5706a

1 file changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/cppcheck.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,23 @@ on: # yamllint disable-line rule:truthy
1212
jobs:
1313
lint:
1414
name: CppCheck Lint
15-
runs-on: ubuntu-24.04
15+
runs-on: ubuntu-26.04
1616

1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
2020

2121
- name: Install tools
2222
run: |
23-
sudo snap install cppcheck --edge
23+
sudo apt-get -y install \
24+
--no-install-recommends \
25+
--no-install-suggests \
26+
cppcheck
2427
2528
- name: Check Tools
2629
run: |
27-
make --version
28-
cmake --version
29-
vcpkg --version
3030
cppcheck --version
3131
32-
- name: Install dependencies
33-
run: |
34-
make dependencies
35-
3632
- name: Lint
3733
run: |
3834
export VCPKG_ROOT=/usr/local/share/vcpkg

0 commit comments

Comments
 (0)