diff --git a/.github/workflows/github-actions.yaml b/.github/workflows/github-actions.yaml index 87a8141..18e48e5 100644 --- a/.github/workflows/github-actions.yaml +++ b/.github/workflows/github-actions.yaml @@ -22,8 +22,8 @@ jobs: - uses: actions/checkout@v3 - name: install dependencies run: | - apt-get update - apt-get install cppcheck + sudo apt-get update + sudo apt-get install cppcheck - name: run cppcheck run: cppcheck --suppress="*:test/*" --enable=warning,portability,information --error-exitcode=1 --language=c++ $(find -iname "*.ino") $(find -iname "*.cpp") $(find -iname "*.h")