Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Dec 26, 2023
1 parent 12896d0 commit b872cfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
SCAN_HOST: ${{ secrets.SCAN_HOST }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
APT_PACKAGES: protobuf-compiler libspdlog-dev libpcap-dev libgmock-dev
APT_PACKAGES: g++-11 protobuf-compiler libspdlog-dev libpcap-dev libgmock-dev

steps:
- uses: actions/checkout@v4
Expand All @@ -32,7 +32,7 @@ jobs:
fetch-depth: 0

- name: Install dependencies
run: sudo apt install -y ${{ env.APT_PACKAGES }} && sudo rm -rf /usr/lib/gcc
run: sudo apt remove g++ && sudo apt install -y ${{ env.APT_PACKAGES }}

- name: Compile with coverage data
run: |
Expand Down

0 comments on commit b872cfe

Please sign in to comment.